33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| # this extension
@[email protected]/tls.tcl.h: @[email protected]/tls.tcl
xxd -i < '@[email protected]/tls.tcl' > '@[email protected]/tls.tcl.h.new'
mv '@[email protected]/tls.tcl.h.new' '@[email protected]/tls.tcl.h'
# Create default DH parameters
dh_params.h: @[email protected]/gen_dh_params
@[email protected]/gen_dh_params > dh_params.h.new
mv dh_params.h.new dh_params.h
# Generic target for building files from the "srcdir"
# tree -- the default target will not match paths
%.o: @[email protected]/%.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o "[email protected]" -c "$<"
|
|
| 33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
| # this extension
@[email protected]/tls.tcl.h: @[email protected]/tls.tcl
xxd -i < '@[email protected]/tls.tcl' > '@[email protected]/tls.tcl.h.new'
mv '@[email protected]/tls.tcl.h.new' '@[email protected]/tls.tcl.h'
# Create default DH parameters
dh_params.h: @[email protected]/gen_dh_params
@[email protected]/gen_dh_params @[email protected] > dh_params.h.new
mv dh_params.h.new dh_params.h
# Generic target for building files from the "srcdir"
# tree -- the default target will not match paths
%.o: @[email protected]/%.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o "[email protected]" -c "$<"
|