Check-in [bb395280e5]
Overview
Comment:AppFS 1.0
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk | 1.0
Files: files | file ages | folders
SHA1: bb395280e5d965e2c76ef10dd6c3c26ed2db03b9
User & Date: rkeene on 2014-11-18 01:15:45
Other Links: manifest | tags
Context
2014-11-18
02:56
Added licensing information (MIT License) check-in: 9dd5234a64 user: rkeene tags: trunk
01:15
AppFS 1.0 check-in: bb395280e5 user: rkeene tags: trunk, 1.0
01:15
Made default build release again check-in: 858edeb2b9 user: rkeene tags: trunk
Changes

Modified Makefile from [4622db3b66] to [f7bd4d82a1].

1
2
3
4
5
6
7
8
APPFS_VERSION  = 0.1
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_RELEASE)
LDFLAGS        += $(TCL_LDFLAGS)
|







1
2
3
4
5
6
7
8
APPFS_VERSION  = 1.0
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_RELEASE)
LDFLAGS        += $(TCL_LDFLAGS)