# -*- makefile -*- # # $Id: makefile.inc 4105 2008-11-07 23:12:42Z rares $ # # Copyright (C) 2007 by The Regents of the University of California # # Redistribution of this file is permitted under the terms of the # BSD license # # This is a global makefile to be included by each local makefile. # # Date: 10/05/2007 # # Author: Chen Li # Rares Vernica # # set CODEBASEROOT to the absolute path of the source code directory # # e.g., if you put the code in /home/joe/flamingo/src do: # CODEBASEROOT = /home/joe/flamingo-2.0.1/src # e.g., CODEBASEROOT = /home/joe/flamingo-2.0.1/src CODEBASEROOT = APPSTRINGROOT = $(CODEBASEROOT) VPATH = $(APPSTRINGROOT) CC = g++ CPPFLAGS = -Wall -I$(APPSTRINGROOT) -O3 # CPPFLAGS = -Wall -I$(APPSTRINGROOT) -g ifndef CODEBASEROOT $(error Please edit makefile.ini and set the CODEBASEROOT variable to the absolute path of the source code directory. e.g., if you put the code in /home/joe/flamingo-2.0.1/src do: CODEBASEROOT = /home/joe/flamingo-2.0.1/src) endif