summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorTobias Wiese <tobias@tobiaswiese.com>2020-03-21 02:47:36 +0100
committerTobias Wiese <tobias@tobiaswiese.com>2020-03-21 02:47:36 +0100
commitf3984a9b4fb17c12956138694936c62959ebec2d (patch)
tree36f0fe2637da5d0c691dcaaa711c8f76ed19f2f4 /src/Makefile
Initial Commit
The application exchanges 2 files, given as arguments. Signed-off-by: Tobias Wiese <tobias@tobiaswiese.com>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..972f55e
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,19 @@
+CC := gcc
+CFLAGS := -Wall
+LDFLAGS :=
+
+CFLAGS += -DVERSIN="\"$(shell git describe --dirty --always)\""
+
+TARGETS := exchange
+MAINS := $(addsuffix .o, $(TARGETS))
+OBJ := $(MAINS)
+
+.PHONY: all
+all: $(TARGETS)
+
+.PHONY: clean
+clean:
+ rm -rf $(OBJ) $(TARGETS)
+
+$(TARGETS): % : %.o
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^