#!/usr/bin/make # #### The toplevel directory of the source tree. # SRCDIR = /Users/bbraun/src/cvstrac-1.1.2 #### C Compiler and options for use in building executables that # will run on the platform that is doing the build. # BCC = gcc -g -Os #### The suffix to add to executable files. ".exe" for windows. # Nothing for unix. # E = #### C Compile and options for use in building executables that # will run on the target platform. This is usually the same # as BCC, unless you are cross-compiling. # #TCC = gcc -O6 TCC = gcc -g -Os -Wall -DCVSTRAC_I18N=0 #TCC = gcc -g -O0 -Wall -fprofile-arcs -ftest-coverage #### Extra arguments for linking against SQLite # LIBSQLITE = -lsqlite3 #### Installation directory # INSTALLDIR = /Library/WebServer/CGI-Executables/ # You should not need to change anything below this line ############################################################################### include $(SRCDIR)/main.mk