view TaskManager/Test/simple_render/Makefile @ 63:54355e641172

*** empty log message ***
author gongo
date Sun, 17 Feb 2008 10:55:22 +0900
parents 6bc72fde6615
children 7d2874fb0671
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  = -O9 -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 #-lspe2 -lpthread

.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 *~ \#*