Mercurial > hg > Game > Cerium
view example/many_task/ppe/Makefile @ 1852:7e9ebc1b08b6 draft
fix
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 21 Dec 2013 19:53:05 +0900 |
parents | 18b63e697c61 |
children |
line wrap: on
line source
SRCS_TMP = $(wildcard *.cc) SRCS_EXCLUDE = task_init.cc mymethod.cc # 除外するファイルを書く SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP)) OBJS = $(SRCS:.cc=.o) TARGET = sort_test CERIUM = ../../../../CERIUM CC = g++ CFLAGS = -g -Wall INCLUDE = -I${CERIUM}/include/TaskManager -I. -I.. .SUFFIXES: .cc .o .cc.o: $(CC) $(CFLAGS) $(INCLUDE) -c $< -o $@ all: $(TARGET) $(TARGET): $(OBJS) $(TASK_OBJS) $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) link: $(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS) debug: $(TARGET) sudo gdb ./$(TARGET) loop: $(OBJS) $(TASK_OBJS) $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) $(LOOP) rec: $(OBJS) $(TASK_OBJS) $(CC) -o $@ $(OBJS) $(TASK_OBJS) $(LIBS) $(REC) clean: rm -f $(TARGET) $(OBJS) $(TASK_OBJS) rm -f *~ \#*