38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| # 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 "$<"
# Install the extension
install: @[email protected] pkgIndex.tcl
$(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
$(INSTALL) -t '$(DESTDIR)$(PACKAGE_INSTALL_DIR)' @[email protected] pkgIndex.tcl
|
|
| 38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
| # 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
.c.o:
$(CC) $(CPPFLAGS) $(CFLAGS) -o "[email protected]" -c "$<"
# Install the extension
install: @[email protected] pkgIndex.tcl
$(INSTALL) -d '$(DESTDIR)$(PACKAGE_INSTALL_DIR)'
$(INSTALL) -t '$(DESTDIR)$(PACKAGE_INSTALL_DIR)' @[email protected] pkgIndex.tcl
|