Mercurial > hg > Game > Cerium
view TaskManager/Test/simple_pack/Makefile @ 115:d9ea79aac04f draft
fix Makefile
author | gongo@charles.cr.ie.u-ryukyu.ac.jp |
---|---|
date | Thu, 13 Nov 2008 10:46:36 +0900 |
parents | 35a6cf176c38 |
children |
line wrap: on
line source
TARGET = test_nogl SRCS = $(wildcard *.cpp) OBJS = $(SRCS:.cpp=.o) TASK_DIR = task TASK_SRCS = $(wildcard $(TASK_DIR)/*.cpp) TASK_OBJS = $(TASK_SRCS:.cpp=.o) CC = g++ CFLAGS = -g -Wall# -DDEBUG INCLUDE = -I../../../include/TaskManager -I. EXTRA_CFLAGS = `sdl-config --cflags` `xml2-config --cflags`\ LIBS = `sdl-config --libs` -lSDL_image -Wl,-framework,OpenGL \ `xml2-config --libs`\ -L../../ -lmanager .SUFFIXES: .cpp .o .cpp.o: $(CC) $(CFLAGS) $(EXTRA_CFLAGS) $(INCLUDE) -c $< -o $@ all: $(TARGET) $(TARGET): $(OBJS) $(TASK_OBJS) $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) clean: rm -f $(TARGET) $(OBJS) $(TASK_OBJS) rm -f *~ \#*