Check-in [858edeb2b9]
Overview
Comment:Made default build release again
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 858edeb2b9685cd26678c13ae4ce45e0aa05a7ae
User & Date: rkeene on 2014-11-18 01:15:04
Other Links: manifest | tags
Context
2014-11-18
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
01:14
Added release engineering file check-in: aa77e716e8 user: rkeene tags: trunk
Changes

Modified Makefile from [3339b742b9] to [4622db3b66].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
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_DEBUG)
LDFLAGS        += $(TCL_LDFLAGS)
FUSE_LIBS      = $(shell $(PKG_CONFIG) --libs fuse)
LIBS           += $(FUSE_LIBS) $(TCL_LIBS)
PREFIX         = /usr/local
prefix         = $(PREFIX)
bindir         = $(prefix)/bin
sbindir        = $(prefix)/sbin






|







1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
FUSE_LIBS      = $(shell $(PKG_CONFIG) --libs fuse)
LIBS           += $(FUSE_LIBS) $(TCL_LIBS)
PREFIX         = /usr/local
prefix         = $(PREFIX)
bindir         = $(prefix)/bin
sbindir        = $(prefix)/sbin