78 lines
1.7 KiB
Makefile
78 lines
1.7 KiB
Makefile
#-----------------------------------------------------------------------------
|
|
# Makefile for Final Cut
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# This is where make install will install the executable
|
|
BINDIR = /usr/local/bin
|
|
|
|
# compiler parameter
|
|
CXX = g++
|
|
CCXFLAGS = $(OPTIMIZE) $(PROFILE) $(DEBUG) -march=x86-64 -frtti -fexceptions
|
|
MAKEFILE = -f Makefile.gcc
|
|
LDFLAGS = -L../src -lfinal
|
|
INCLUDES = -I../src
|
|
RM = rm -f
|
|
PROGS = hello dialog input-dialog mandelbrot fstring timer ui
|
|
OBJS1 = hello.o
|
|
OBJS2 = dialog.o
|
|
OBJS3 = input-dialog.o
|
|
OBJS4 = mandelbrot.o
|
|
OBJS5 = fstring.o
|
|
OBJS6 = timer.o
|
|
OBJS7 = ui.o
|
|
|
|
ifdef DEBUG
|
|
OPTIMIZE = -O0
|
|
else
|
|
OPTIMIZE = -O2
|
|
endif
|
|
|
|
.SUFFIXES: .cpp
|
|
|
|
# $@ = name of the targets
|
|
# $< = the first dependency
|
|
.cpp.o:
|
|
$(CXX) -c $(CCXFLAGS) $(INCLUDES) -o $@ $<
|
|
|
|
all: dep $(PROGS)
|
|
|
|
hello: $(OBJS1)
|
|
$(CXX) $(CCXFLAGS) $(INCLUDES) $(LDFLAGS) -o hello $(OBJS1)
|
|
|
|
dialog: $(OBJS2)
|
|
$(CXX) $(CCXFLAGS) $(INCLUDES) $(LDFLAGS) -o dialog $(OBJS2)
|
|
|
|
input-dialog: $(OBJS3)
|
|
$(CXX) $(CCXFLAGS) $(INCLUDES) $(LDFLAGS) -o input-dialog $(OBJS3)
|
|
|
|
mandelbrot: $(OBJS4)
|
|
$(CXX) $(CCXFLAGS) $(INCLUDES) $(LDFLAGS) -o mandelbrot $(OBJS4)
|
|
|
|
fstring: $(OBJS5)
|
|
$(CXX) $(CCXFLAGS) $(INCLUDES) $(LDFLAGS) -o fstring $(OBJS5)
|
|
|
|
timer: $(OBJS6)
|
|
$(CXX) $(CCXFLAGS) $(INCLUDES) $(LDFLAGS) -o timer $(OBJS6)
|
|
|
|
ui: $(OBJS7)
|
|
$(CXX) $(CCXFLAGS) $(INCLUDES) $(LDFLAGS) -o ui $(OBJS7)
|
|
|
|
debug:
|
|
$(MAKE) $(MAKEFILE) DEBUG="-g -D DEBUG -W -Wall -pedantic"
|
|
|
|
profile:
|
|
$(MAKE) $(MAKEFILE) PROFILE="-pg"
|
|
|
|
.PHONY: clean dep
|
|
clean:
|
|
$(RM) $(PROGS) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(OBJS5) $(OBJS6) $(OBJ6) .depend *~
|
|
|
|
dep:
|
|
$(CXX) -MM $(INCLUDES) *.cpp >.depend
|
|
|
|
#
|
|
# include .depend if it exists
|
|
#
|
|
|
|
-include .depend
|