33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# this extension
@srcdir@/tls.tcl.h: @srcdir@/tls.tcl
xxd -i < '@srcdir@/tls.tcl' > '@srcdir@/tls.tcl.h.new'
mv '@srcdir@/tls.tcl.h.new' '@srcdir@/tls.tcl.h'
# Create default DH parameters
dh_params.h: @srcdir@/gen_dh_params
@srcdir@/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: @srcdir@/%.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o "$@" -c "$<"
|
|
|
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# this extension
@srcdir@/tls.tcl.h: @srcdir@/tls.tcl
xxd -i < '@srcdir@/tls.tcl' > '@srcdir@/tls.tcl.h.new'
mv '@srcdir@/tls.tcl.h.new' '@srcdir@/tls.tcl.h'
# Create default DH parameters
dh_params.h: @srcdir@/gen_dh_params
@srcdir@/gen_dh_params @GEN_DH_PARAMS_ARGS@ > 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: @srcdir@/%.c
$(CC) $(CPPFLAGS) $(CFLAGS) -o "$@" -c "$<"
|