36
37
38
39
40
41
42
43
44
45
46
47
48
49
| # 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
# 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
|
>
>
| 36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
| # 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
# 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
|