aboutsummaryrefslogtreecommitdiff
path: root/apps/test
diff options
context:
space:
mode:
authorMarvin Borner2021-05-20 20:19:05 +0200
committerMarvin Borner2021-05-20 20:19:05 +0200
commit519a1de7d9fe809efc4077933fabbe93a8da9439 (patch)
treebe9d636e48036b42c8c6cc490b5f53db8b4f3a2e /apps/test
parent59de0af0cff96182d3e30ab453bc9763a6635947 (diff)
More generic makefile layout
Diffstat (limited to 'apps/test')
-rw-r--r--apps/test/Makefile17
-rw-r--r--apps/test/main.c (renamed from apps/test/test.c)0
2 files changed, 4 insertions, 13 deletions
diff --git a/apps/test/Makefile b/apps/test/Makefile
index e80b54b..b0e05f3 100644
--- a/apps/test/Makefile
+++ b/apps/test/Makefile
@@ -1,16 +1,7 @@
# MIT License, Copyright (c) 2021 Marvin Borner
-OBJS = test.o fuzz.o
+NAME = test
+OBJS = main.o fuzz.o
+LIBS = -lc
-all: $(OBJS)
- @mkdir -p $(BUILD)/apps/test/
- @$(LD) -o $(BUILD)/apps/test/exec $(LDFLAGS) $^ -lc
-ifeq ($(CONFIG_STRIP), true)
- @$(ST) --strip-all $(BUILD)/apps/test/exec
-endif
-
-clean:
- @$(RM) -f $(OBJS)
-
-%.o: %.c
- @$(CC) -c $(CFLAGS) $< -o $@
+include ../generic.mk
diff --git a/apps/test/test.c b/apps/test/main.c
index 2101412..2101412 100644
--- a/apps/test/test.c
+++ b/apps/test/main.c