pkmndecompress/Makefile

14 lines
152 B
Makefile
Raw Normal View History

2022-09-18 16:21:18 +03:00
OBJECTS := bitstream.o
clean:
$(RM) *.o test_bitstream main
run_%: %
./$^
test_%: test_%.c $(OBJECTS)
$(CC) $^ -o $@
%.o: %.c
$(CC) $^ -c -o $@