diff options
author | Marvin Borner | 2021-05-20 20:19:05 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-20 20:19:05 +0200 |
commit | 519a1de7d9fe809efc4077933fabbe93a8da9439 (patch) | |
tree | be9d636e48036b42c8c6cc490b5f53db8b4f3a2e /apps/chess | |
parent | 59de0af0cff96182d3e30ab453bc9763a6635947 (diff) |
More generic makefile layout
Diffstat (limited to 'apps/chess')
-rw-r--r-- | apps/chess/Makefile | 17 | ||||
-rw-r--r-- | apps/chess/main.c (renamed from apps/chess/chess.c) | 0 |
2 files changed, 4 insertions, 13 deletions
diff --git a/apps/chess/Makefile b/apps/chess/Makefile index e84f65f..bc65e93 100644 --- a/apps/chess/Makefile +++ b/apps/chess/Makefile @@ -1,16 +1,7 @@ # MIT License, Copyright (c) 2021 Marvin Borner -OBJS = chess.o +NAME = chess +OBJS = main.o +LIBS = -lgui -lc -all: $(OBJS) - @mkdir -p $(BUILD)/apps/chess/ - @$(LD) -o $(BUILD)/apps/chess/exec $(LDFLAGS) $^ -lgui -ltxt -lc -ifeq ($(CONFIG_STRIP), true) - @$(ST) --strip-all $(BUILD)/apps/chess/exec -endif - -clean: - @$(RM) -f $(OBJS) - -%.o: %.c - @$(CC) -c $(CFLAGS) $< -o $@ +include ../generic.mk diff --git a/apps/chess/chess.c b/apps/chess/main.c index 94739ef..94739ef 100644 --- a/apps/chess/chess.c +++ b/apps/chess/main.c |