Overview
Comment: | Updated to set CPPFLAGS separately form CFLAGS |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8ef4137624f33c63e5a8f89e7a3f84aa |
User & Date: | rkeene on 2014-05-20 20:15:55 |
Other Links: | manifest | tags |
Context
2014-05-22
| ||
04:45 | Updated to support not providing a dlopen symbol in the static archive (and default to not providing one in the shared archive) check-in: 149997010d user: rkeene tags: trunk | |
2014-05-20
| ||
20:15 | Updated to set CPPFLAGS separately form CFLAGS check-in: 8ef4137624 user: rkeene tags: trunk | |
2014-05-18
| ||
21:05 | tcc4tcl 0.11 check-in: d685bad77a user: rkeene tags: trunk, 0.11 | |
Changes
Modified Makefile.in from [d4f614c5a5] to [34d5b3595f].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - + | prefix = UNSPECIFIED exec_prefix = @exec_prefix@ libdir = @libdir@ TARGET = @TARGET@ CC = @CC@ CPP = @CPP@ AR = @AR@ RANLIB = @RANLIB@ CFLAGS = @CFLAGS@ @SHOBJFLAGS@ |
︙ | |||
70 71 72 73 74 75 76 | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | - + | @if ! echo "_WIN32" | $(CPP) $(CPPFLAGS) - | grep '^_WIN32$$' >/dev/null; then \ echo cp -r $(srcdir)/tcc/win32/include/* "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/include/"; \ cp -r $(srcdir)/tcc/win32/include/* "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/include/"; \ echo cp -r $(srcdir)/tcc/win32/lib/*.def "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/lib/"; \ cp -r $(srcdir)/tcc/win32/lib/*.def "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/lib/"; \ fi ( for file in $(INSTALL_HEADERS); do echo "#include <$${file}>"; done ) | \ |
︙ |