diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ae2159d --- /dev/null +++ b/Makefile | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | CC = gcc | ||
| 2 | CCFLAGS = -owall | ||
| 3 | INCLUDES = | ||
| 4 | PREFIX = /usr/local | ||
| 5 | |||
| 6 | .PHONY: all install | ||
| 7 | |||
| 8 | all: temperaturUmrechner | ||
| 9 | |||
| 10 | install: | ||
| 11 | mkdir -p $(PREFIX)/bin | ||
| 12 | install -m 0755 -t $(PREFIX)/bin temperaturUmrechner | ||
| 13 | |||
| 14 | temperaterUmrechner: | ||
| 15 | $(CC) $(INCLUDES) $(CCFLAGS) -o temperaturUmrechner temperaturUmrechner.c | ||
