Overview
Comment: | Updated to use an environment variable to determine if we should do a debug build (usually not) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
40785110e7333c1e88dd8a5fe1d25cf6 |
User & Date: | rkeene on 2015-03-18 17:21:44 |
Other Links: | manifest | tags |
Context
2015-03-19
| ||
15:43 | Updated to indicate local files are not world-accessible (good idea ?) check-in: 9be4aa6a4a user: rkeene tags: trunk | |
2015-03-18
| ||
17:21 | Updated to use an environment variable to determine if we should do a debug build (usually not) check-in: 40785110e7 user: rkeene tags: trunk | |
17:20 | Added basic support for removing the world/group permissions from files check-in: 152a83b125 user: rkeene tags: trunk | |
Changes
Modified Makefile from [33e6f3a5ed] to [18ed88dcb7].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | APPFS_VERSION = 1.4 CC = gcc PKG_CONFIG = pkg-config FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 -DAPPFS_EXIT_PATH=1 CFLAGS_RELEASE = -Wall -UDEBUG -DNDEBUG=1 -O3 CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_DEBUG) LDFLAGS += $(TCL_LDFLAGS) FUSE_LIBS = $(shell $(PKG_CONFIG) --libs fuse) LIBS += $(FUSE_LIBS) $(TCL_LIBS) PREFIX = /usr/local prefix = $(PREFIX) exec_prefix = $(prefix) bindir = $(exec_prefix)/bin | > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | APPFS_VERSION = 1.4 CC = gcc PKG_CONFIG = pkg-config FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 -DAPPFS_EXIT_PATH=1 CFLAGS_RELEASE = -Wall -UDEBUG -DNDEBUG=1 -O3 ifneq ($(APPFS_DEBUG_BUILD),1) CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_RELEASE) else CFLAGS += $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_DEBUG) endif LDFLAGS += $(TCL_LDFLAGS) FUSE_LIBS = $(shell $(PKG_CONFIG) --libs fuse) LIBS += $(FUSE_LIBS) $(TCL_LIBS) PREFIX = /usr/local prefix = $(PREFIX) exec_prefix = $(prefix) bindir = $(exec_prefix)/bin |
︙ | ︙ |