49
50
51
52
53
54
55
56
57
58
59
60
61
62
| .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
# Clean the local build directory for rebuild against the same configuration
clean:
rm -f tls.o tlsBIO.o tlsIO.o tlsX509.o
rm -f [email protected]@
rm -f tcltls.a.new tcltls.a
rm -f tls.tcl.h tls.tcl.h.new.1 tls.tcl.h.new.2
|
>
>
>
>
| 49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
| .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
# Test target, run the automated test suite
test: @[email protected]
cd tests && @[email protected] all.tcl
# Clean the local build directory for rebuild against the same configuration
clean:
rm -f tls.o tlsBIO.o tlsIO.o tlsX509.o
rm -f [email protected]@
rm -f tcltls.a.new tcltls.a
rm -f tls.tcl.h tls.tcl.h.new.1 tls.tcl.h.new.2
|
72
73
74
75
76
77
78
79
| # Clean the local build directory back to only thing things that exist in
# version control system
mrproper: distclean
rm -f @[email protected]/configure @[email protected]/config.sub @[email protected]/config.guess @[email protected]/install-sh
rm -f @[email protected]/aclocal.m4
rm -rf @[email protected]/autom4te.cache
.PHONY: all install clean distclean mrproper
|
|
| 76
77
78
79
80
81
82
83
| # Clean the local build directory back to only thing things that exist in
# version control system
mrproper: distclean
rm -f @[email protected]/configure @[email protected]/config.sub @[email protected]/config.guess @[email protected]/install-sh
rm -f @[email protected]/aclocal.m4
rm -rf @[email protected]/autom4te.cache
.PHONY: all install clean distclean mrproper test
|