RunBurg = $(BURG) $(BURG_OPTS)
# Enable this for profiling support with 'gprof'
-#Prof = -pg
+ifdef ENABLE_PROFILING
+PROFILE = -pg
+else
+PROFILE =
+endif
# TODO: Get rid of exceptions! : -fno-exceptions -fno-rtti
# -Wno-unused-parameter
-CompileCommonOpts = $(Prof) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
+CompileCommonOpts = $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
# Compile a file, don't link...
-Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
+Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) $(PROFILE)
CompileG = $(Compile) -g -D_DEBUG
CompileO = $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
ifdef ENABLE_PURIFY
Link = $(PURIFY) $(CXX) $(Prof) -static
else
-Link = LD_RUN_PATH=/usr/dcs/software/evaluation/encap/gcc-3.0.4/lib $(CXX) $(Prof)
+Link = LD_RUN_PATH=/usr/dcs/software/evaluation/encap/gcc-3.0.4/lib $(CXX) $(PROFILE)
endif
LinkG = $(Link) -g -L $(LEVEL)/lib/Debug
LinkO = $(Link) -O3 -L $(LEVEL)/lib/Release
LIBNAME_AO := $(LEVEL)/lib/Release/lib$(LIBRARYNAME).a
LIBNAME_AG := $(LEVEL)/lib/Debug/lib$(LIBRARYNAME).a
-all:: $(LIBNAME_AG)
+all:: $(LIBNAME_AG) ###$(LIBNAME_AO)
dynamic:: $(LIBNAME_G)
# TODO: Enable optimized builds
ifeq ($(LEVEL), .)
tags:
- etags -l c++ `find . -name '*.cpp' -o -name '*.h'`
+ etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
all:: tags
# Rule for building the bison parsers...
%.cpp %.h : %.y
- bison -d -p $(<:%Parser.y=%) $(basename $@).y
+ bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
mv -f $(basename $@).tab.c $(basename $@).cpp
mv -f $(basename $@).tab.h $(basename $@).h
RunBurg = $(BURG) $(BURG_OPTS)
# Enable this for profiling support with 'gprof'
-#Prof = -pg
+ifdef ENABLE_PROFILING
+PROFILE = -pg
+else
+PROFILE =
+endif
# TODO: Get rid of exceptions! : -fno-exceptions -fno-rtti
# -Wno-unused-parameter
-CompileCommonOpts = $(Prof) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
+CompileCommonOpts = $(PROFILE) -Wall -W -Wwrite-strings -Wno-unused -I$(LEVEL)/include
# Compile a file, don't link...
-Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts)
+Compile = $(CXX) -c $(CPPFLAGS) $(CXXFLAGS) $(CompileCommonOpts) $(PROFILE)
CompileG = $(Compile) -g -D_DEBUG
CompileO = $(Compile) -O3 -DNDEBUG -finline-functions -felide-constructors -fnonnull-objects -freg-struct-return -fshort-enums
ifdef ENABLE_PURIFY
Link = $(PURIFY) $(CXX) $(Prof) -static
else
-Link = LD_RUN_PATH=/usr/dcs/software/evaluation/encap/gcc-3.0.4/lib $(CXX) $(Prof)
+Link = LD_RUN_PATH=/usr/dcs/software/evaluation/encap/gcc-3.0.4/lib $(CXX) $(PROFILE)
endif
LinkG = $(Link) -g -L $(LEVEL)/lib/Debug
LinkO = $(Link) -O3 -L $(LEVEL)/lib/Release
LIBNAME_AO := $(LEVEL)/lib/Release/lib$(LIBRARYNAME).a
LIBNAME_AG := $(LEVEL)/lib/Debug/lib$(LIBRARYNAME).a
-all:: $(LIBNAME_AG)
+all:: $(LIBNAME_AG) ###$(LIBNAME_AO)
dynamic:: $(LIBNAME_G)
# TODO: Enable optimized builds
ifeq ($(LEVEL), .)
tags:
- etags -l c++ `find . -name '*.cpp' -o -name '*.h'`
+ etags -l c++ `find include lib tools -name '*.cpp' -o -name '*.h'`
all:: tags
# Rule for building the bison parsers...
%.cpp %.h : %.y
- bison -d -p $(<:%Parser.y=%) $(basename $@).y
+ bison -v -d -p $(<:%Parser.y=%) $(basename $@).y
mv -f $(basename $@).tab.c $(basename $@).cpp
mv -f $(basename $@).tab.h $(basename $@).h