aboutsummaryrefslogtreecommitdiff
path: root/apps/test/Makefile
blob: e80b54bfee569ade663b0377e07d96faf5ddd051 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# MIT License, Copyright (c) 2021 Marvin Borner

OBJS = test.o fuzz.o

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 $@