summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorHaoran S. Diao <0@hairydiode.xyz>2018-10-13 13:24:34 -0400
committerHaoran S. Diao <0@hairydiode.xyz>2018-10-13 13:24:34 -0400
commitc58bbd7a51a574d4c74b58040e2a4628dbc125f5 (patch)
tree29c73e085d67688ff7356eb88b7b6da448f90047 /makefile
initial commitHEADmaster
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/makefile b/makefile
new file mode 100644
index 0000000..31bbcd4
--- /dev/null
+++ b/makefile
@@ -0,0 +1,6 @@
+sched : sched.o
+ gcc sched.o -o sched -lncurses
+sched.o : sched.c
+ gcc -c sched.c -Incurses
+clean :
+ rm sched.c