Overview
Comment: | Fix "make distclean" leaving files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2a44ff3764c21048bec01e1d17cefcae |
User & Date: | js on 2020-06-13 19:06:51 |
Other Links: | manifest | tags |
Context
2020-06-14
| ||
15:30 | Make threads work on Windows 98 check-in: e16590dcb7 user: js tags: trunk | |
2020-06-13
| ||
19:06 | Fix "make distclean" leaving files check-in: 2a44ff3764 user: js tags: trunk | |
19:03 | OFLocaleTests: Fix inconsistent output check-in: 5f0a80bb81 user: js tags: trunk | |
Changes
Modified src/Makefile from [fef35a3bdb] to [34c348d2c8].
1 2 3 4 | include ../extra.mk SUBDIRS = ${RUNTIME} exceptions ${ENCODINGS} forwarding invocation SUBDIRS_AFTER = ${BRIDGE} | | | 1 2 3 4 5 6 7 8 9 10 11 12 | include ../extra.mk SUBDIRS = ${RUNTIME} exceptions ${ENCODINGS} forwarding invocation SUBDIRS_AFTER = ${BRIDGE} DISTCLEAN = Info.plist objfw-defs.h SHARED_LIB = ${OBJFW_SHARED_LIB} STATIC_LIB = ${OBJFW_STATIC_LIB} FRAMEWORK = ${OBJFW_FRAMEWORK} LIB_MAJOR = ${OBJFW_LIB_MAJOR} LIB_MINOR = ${OBJFW_LIB_MINOR} |
︙ | ︙ |
Modified tests/Makefile from [a8ea1ae9c1] to [5e05094c6b].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | include ../extra.mk SUBDIRS = ${TESTPLUGIN} CLEAN = EBOOT.PBP \ boot.dol \ ${PROG_NOINST}.arm9 \ ${PROG_NOINST}.nds PROG_NOINST = tests${PROG_SUFFIX} STATIC_LIB_NOINST = ${TESTS_STATIC_LIB} SRCS = ForwardingTests.m \ OFASN1DERRepresentationTests.m \ OFASN1DERValueTests.m \ OFArrayTests.m \ | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | include ../extra.mk SUBDIRS = ${TESTPLUGIN} CLEAN = EBOOT.PBP \ boot.dol \ ${PROG_NOINST}.arm9 \ ${PROG_NOINST}.nds DISTCLEAN = Info.plist PROG_NOINST = tests${PROG_SUFFIX} STATIC_LIB_NOINST = ${TESTS_STATIC_LIB} SRCS = ForwardingTests.m \ OFASN1DERRepresentationTests.m \ OFASN1DERValueTests.m \ OFArrayTests.m \ |
︙ | ︙ |
Modified tests/plugin/Makefile from [f500c20eb5] to [a32249aa5e].
1 2 3 4 5 6 7 | PLUGIN_NOINST = TestPlugin${PLUGIN_SUFFIX} SRCS = TestPlugin.m include ../../buildsys.mk include ../../extra.mk CPPFLAGS += -I../.. -I../../src -I../../src/runtime | > > | 1 2 3 4 5 6 7 8 9 | DISTCLEAN = Info.plist PLUGIN_NOINST = TestPlugin${PLUGIN_SUFFIX} SRCS = TestPlugin.m include ../../buildsys.mk include ../../extra.mk CPPFLAGS += -I../.. -I../../src -I../../src/runtime |
︙ | ︙ |