mips/makefile.mk

40 lines
735 B
Makefile
Raw Normal View History

# needed cflags
2024-09-10 22:23:46 +00:00
CFLAGS += -std=gnu2x
# add include directory
CFLAGS += -isystem ../include
INCLUDE += ../include
# add lib directory
SRC += ../lib
H_SRC = $(shell find $(SRC) $(INCLUDE) -type f -name "*.h")
C_SRC = $(shell find $(SRC) -type f -name "*.c")
C_OBJ = $(patsubst %.c,$(BIN)/%.o,$(C_SRC))
2024-09-22 20:02:42 +00:00
.PHONY: clean build run test
build: $(BIN)/$(OUT)
clean:
rm -fr $(BIN)
2024-09-21 01:16:07 +00:00
rm -fr ../bin/lib
run: build
$(BIN)/$(OUT)
test:
make -C ../test $(OUT)
mkdir -p ../fuzz
2024-09-22 20:02:42 +00:00
rm -fr ../fuzz/$(OUT)
afl-fuzz -i ../test/$(OUT) -o ../fuzz -M $(OUT) -- $(BIN)/$(OUT) @@
$(C_OBJ): $(BIN)/%.o : %.c
@mkdir -p $(@D)
$(CC) -c $(CFLAGS) -o $@ $<
$(BIN)/$(OUT): $(C_OBJ) $(H_SRC)
@mkdir -p $(@D)
$(LD) $(LDFLAGS) -o $(BIN)/$(OUT) $(C_OBJ)