aboutsummaryrefslogtreecommitdiff
path: root/apps/chess/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'apps/chess/Makefile')
-rw-r--r--apps/chess/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/chess/Makefile b/apps/chess/Makefile
new file mode 100644
index 0000000..b22cb1a
--- /dev/null
+++ b/apps/chess/Makefile
@@ -0,0 +1,12 @@
+# MIT License, Copyright (c) 2021 Marvin Borner
+
+OBJS = chess.o
+
+all: $(OBJS)
+ @$(LD) -o $(BUILD)/apps/chess $(LDFLAGS) $< -lgui -ltxt -lc
+
+clean:
+ @$(RM) -f $(OBJS)
+
+%.o: %.c
+ @$(CC) -c $(CFLAGS) $< -o $@