diff options
| author | Benedict <benedict@0xb8000.de> | 2017-02-21 12:59:34 +0100 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:25 +0100 |
| commit | 2930ba4f32680e245c1dae66197153abdf6502a6 (patch) | |
| tree | 996ab8ec48bae9ef87abb6bdd994d9dadc2b564f /set2/Makefile | |
| parent | ddce9b2d44ab48fc566870c5155b39c8fc06f24d (diff) | |
added lib to git and moved set2 to subdir
Diffstat (limited to 'set2/Makefile')
| -rw-r--r-- | set2/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/set2/Makefile b/set2/Makefile new file mode 100644 index 0000000..abbacc0 --- /dev/null +++ b/set2/Makefile @@ -0,0 +1,10 @@ +LIB=../lib/lib2.c +CC=gcc +CFLAGS := -g -Wall $(CFLAGS) + +all: task9 + +task9: + $(CC) $(CFLAGS) task9.c $(LIB) -o task9 +clean: + rm task9 |
