summaryrefslogtreecommitdiff
path: root/src/schedule/Makefile
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-15 18:35:29 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>1999-09-15 18:35:29 +0000
commitebd506b224d18fc0c9fe580eeb960335b2be1554 (patch)
tree9e1868dc551b8791025ece5af86ebb83ea76f408 /src/schedule/Makefile
parent9b6111e1a0bc00773afe97da63acaaca8fdfcda2 (diff)
This commit was generated by cvs2svn to compensate for changes in r924,
which included commits to RCS files with non-trunk default branches. git-svn-id: http://svn.cactuscode.org/flesh/trunk@925 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'src/schedule/Makefile')
-rw-r--r--src/schedule/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/schedule/Makefile b/src/schedule/Makefile
new file mode 100644
index 00000000..796cd3cb
--- /dev/null
+++ b/src/schedule/Makefile
@@ -0,0 +1,20 @@
+CC = gcc
+CFLAGS = -g -DDEBUG_SCHEDULAR -DTEST_SCHEDULECREATOR
+
+SRCS = ScheduleCreater.c ScheduleSorter.c ../util/StoreHandledData.c
+INCDIRS = ../include
+
+EXE = schedtest
+
+OBJS = $(SRCS:%.c=%.o)
+
+$(EXE): $(OBJS)
+ cc -o $@ $(CFLAGS) $(notdir $(OBJS))
+
+%.o : %.c
+ cc $(CFLAGS) -c $< $(INCDIRS:%=-I%)
+
+.PHONY: clean
+
+clean:
+ rm -f *.o $(EXE) \ No newline at end of file