aboutsummaryrefslogtreecommitdiff
path: root/sem1/osc/mm10/Makefile
diff options
context:
space:
mode:
authorJulian T <julian@jtle.dk>2020-02-11 12:24:56 +0100
committerJulian T <julian@jtle.dk>2020-02-11 12:24:56 +0100
commit6db1a2cdd3b96731f2e092d55d8c2136eabc52d0 (patch)
tree2be8fae8ce82d708ed9f00f376dda14420850e80 /sem1/osc/mm10/Makefile
parent57305119e05559c1c37e903aef89cd43f44c42c9 (diff)
Rename and cleanup
Diffstat (limited to 'sem1/osc/mm10/Makefile')
-rw-r--r--sem1/osc/mm10/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/sem1/osc/mm10/Makefile b/sem1/osc/mm10/Makefile
deleted file mode 100644
index 99bd635..0000000
--- a/sem1/osc/mm10/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-opgaver=opg1 opg3 opg4
-
-LEX=flex
-CC=gcc
-LINKFLAG=-lfl
-DEFAULT_TARGET=all
-
-%: %.yy.c
- $(CC) -o $@ $^ $(LINKFLAG)
-
-%.o: %.c
- $(CC) -c -o $@ $^
-
-%.yy.c: %.l
- $(LEX) -o $@ $^
-
-all: $(opgaver)
-
-phony: all clean run
-
-run: $(BIN)
- ./$(BIN)
-
-clean:
- rm -f $(opgaver)