diff options
| author | Thomas Schmucker <ts@its1.de> | 2026-07-25 15:22:10 +0200 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2026-07-25 15:22:10 +0200 |
| commit | 85929231fae3ae797f3a34f6b5d928d2341fc1e1 (patch) | |
| tree | 6da38f31e5e023c3caa4f4b9b5c7b417f7248df4 /makefile | |
| download | gmc-300e-monitor-85929231fae3ae797f3a34f6b5d928d2341fc1e1.tar.gz gmc-300e-monitor-85929231fae3ae797f3a34f6b5d928d2341fc1e1.tar.bz2 gmc-300e-monitor-85929231fae3ae797f3a34f6b5d928d2341fc1e1.zip | |
erster import
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..f3be181 --- /dev/null +++ b/makefile | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | include config.mk | ||
| 2 | |||
| 3 | bin/gmc-app: obj/app.o | bin | ||
| 4 | c++ $(LDFLAGS) $^ -o $@ | ||
| 5 | |||
| 6 | obj/%.o: src/%.cpp | obj | ||
| 7 | c++ $(CPPFLAGS) -c $< -o $@ | ||
| 8 | |||
| 9 | bin obj: | ||
| 10 | mkdir -p $@ | ||
| 11 | |||
| 12 | clean: | ||
| 13 | rm -rf bin obj | ||
| 14 | |||
| 15 | .PHONY: all clean | ||
