Overview
Comment: | AppFS 1.14 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 1.14 |
Files: | files | file ages | folders |
SHA1: | 567832addb18563f7193aaa343be507107b3478b |
User & Date: | rkeene on 2020-05-12 15:09:59 |
Other Links: | manifest | tags |
Context
2020-05-12
| ||
17:50 | Upgrade to latest KitCreator for static builds check-in: 5b7d40eb7e user: rkeene tags: trunk | |
15:09 | AppFS 1.14 check-in: 567832addb user: rkeene tags: trunk, 1.14 | |
15:09 | Improve debug logging flexibility check-in: e722919c08 user: rkeene tags: trunk | |
Changes
Modified Makefile from [27f21bab36] to [ac8f648957].
1 -APPFS_VERSION = 1.12 1 +APPFS_VERSION = 1.14 2 2 CC = gcc 3 3 PKG_CONFIG = pkg-config 4 4 FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) 5 5 CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 -DAPPFS_EXIT_PATH=1 -DAPPFS_DEBUG_FD=stderr 6 6 CFLAGS_RELEASE = -Wall -UDEBUG -DNDEBUG=1 -O3 7 7 ifneq ($(APPFS_DEBUG_BUILD),1) 8 8 CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_RELEASE)