Makefile   [plain text]


# name of executable to build
EXECUTABLE=sigTime
# C source (.c extension)
CSOURCE= 
# cpp source (.cpp extension)
CPPSOURCE= sigTime.cpp

SHELL := /bin/zsh

# project-specific libraries, e.g., -lstdc++
#
PROJ_LIBS= 

#
# Optional lib search paths
#
PROJ_LIBPATH=

#
# choose one for cc
#
VERBOSE=
#VERBOSE=-v

#
# non-standard frameworks (e.g., -framework foo)
#
PROJ_FRAMEWORKS= -framework CoreFoundation

#
# Other files to remove at 'make clean' time
#
OTHER_TO_CLEAN=

#
# project-specific includes, with leading -I
#
PROJ_INCLUDES= 

#
# Optional C flags (warnings, optimizations, etc.)
#
PROJ_CFLAGS=-O3 

#
# Optional link flags (using cc, not ld)
#
PROJ_LDFLAGS=-lstdc++

#
# Optional dependencies
#
PROJ_DEPENDS=

include ../Makefile.common