klips/cpp/datastructs/circlesinglelist/Makefile

24 lines
797 B
Makefile
Raw Normal View History

2020-04-30 18:59:05 +00:00
CXX=g++
CXXFLAGS=-g -Wall
###############################################################################
# Driver
###############################################################################
2020-04-30 19:01:14 +00:00
driver: driver.cpp circlesinglelist.o
${CXX} ${CXXFLAGS} driver.cpp circlesinglelist.o -o driver
2020-04-30 18:59:05 +00:00
###############################################################################
2020-04-30 19:01:14 +00:00
# CircleSingleList
2020-04-30 18:59:05 +00:00
###############################################################################
2020-04-30 19:01:14 +00:00
circlesinglelist.o: circlesinglelist.cpp circlesinglelist.h
${CXX} ${CXXFLAGS} -c circlesinglelist.cpp -o circlesinglelist.o
2020-04-30 18:59:05 +00:00
###############################################################################
# Clean
###############################################################################
clean:
rm -f *.o driver