Overview
Comment: | Fixed extraneous profiling flag |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | 9c566a30db5671740de8f62fd76e9687f19201c0 |
User & Date: | rkeene on 2014-11-14 04:27:54 |
Other Links: | manifest | tags |
Context
2014-11-14
| ||
05:20 | Added back completely needed operation check-in: 84483d5933 user: rkeene tags: trunk | |
04:27 | Fixed extraneous profiling flag check-in: 9c566a30db user: rkeene tags: trunk | |
04:19 | Fixed signed-ness issue and removed unessecary operation check-in: d43f3e4da3 user: rkeene tags: trunk | |
Changes
Modified Makefile from [ae74290c96] to [4274fa3689].
1 1 CC = gcc 2 2 PKG_CONFIG = pkg-config 3 3 FUSE_CFLAGS = $(shell $(PKG_CONFIG) --cflags fuse) 4 4 CFLAGS_DEBUG = -Wall -g3 -ggdb3 -DDEBUG=1 -UNDEBUG -O0 5 5 CFLAGS_RELEASE = -Wall -UDEBUG -DNDEBUG=1 -O3 6 6 CFLAGS = $(FUSE_CFLAGS) $(TCL_CFLAGS) $(CFLAGS_DEBUG) 7 -LDFLAGS = $(TCL_LDFLAGS) -pg 7 +LDFLAGS = $(TCL_LDFLAGS) 8 8 FUSE_LIBS = $(shell $(PKG_CONFIG) --libs fuse) 9 9 LIBS = $(FUSE_LIBS) $(TCL_LIBS) 10 10 PREFIX = /usr/local 11 11 prefix = $(PREFIX) 12 12 bindir = $(prefix)/bin 13 13 sbindir = $(prefix)/sbin 14 14