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/test/Makefile | |
parent | 59de0af0cff96182d3e30ab453bc9763a6635947 (diff) |
More generic makefile layout
Diffstat (limited to 'apps/test/Makefile')
-rw-r--r-- | apps/test/Makefile | 17 |
1 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 |