summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 27cfef0..c478de2 100644
--- a/Makefile
+++ b/Makefile
@@ -4,19 +4,14 @@ PROGS=slist list simpleq tailq circleq
all: $(PROGS)
slist: slist.c
- $(CC) -o $@ $?
list: list.c
- $(CC) -o $@ $?
simpleq: simpleq.c
- $(CC) -o $@ $?
tailq: tailq.c
- $(CC) -o $@ $?
circelq: circleq.c
- $(CC) -o $@ $?
clean:
rm -f $(PROGS) *.core