view TaskManager/Test/simple_render/Makefile @ 42:aa11038dbdc1

*** empty log message ***
author gongo
date Thu, 14 Feb 2008 18:27:37 +0900
parents 0024a5259363
children 64ef030deb22
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
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 *~ \#*