diff example/many_task/Makefile.macosx @ 1513:18b63e697c61 draft

many_task/quick_sort is changed recursive to loop
author Yuhi TOMARI <yuhi@cr.ie.u-ryukyu.ac.jp>
date Mon, 08 Oct 2012 02:03:18 +0900
parents 0e1318e7caed
children b3644b73d2cf
line wrap: on
line diff
--- a/example/many_task/Makefile.macosx	Mon Oct 01 16:51:26 2012 +0900
+++ b/example/many_task/Makefile.macosx	Mon Oct 08 02:03:18 2012 +0900
@@ -2,7 +2,7 @@
 
 
 SRCS_TMP = $(wildcard *.cc)
-SRCS_EXCLUDE =  # 除外するファイルを書く
+SRCS_EXCLUDE = sort_test.cc ppe/task_init.cc # 除外するファイルを書く
 SRCS = $(filter-out $(SRCS_EXCLUDE),$(SRCS_TMP))
 OBJS = $(SRCS:.cc=.o)
 
@@ -33,7 +33,7 @@
 	$(CC) -o $(TARGET) $(OBJS) $(TASK_OBJS) $(LIBS)
 
 debug: $(TARGET)
-	sudo gdb ./$(TARGET) 
+	sudo gdb ./$(TARGET)
 
 clean:
 	rm -f $(TARGET) $(OBJS) $(TASK_OBJS)