diff options
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 |