nishbox/common.mk
2025-03-31 11:16:15 +09:00

11 lines
132 B
Makefile

.SUFFIXES: .c .o
.PHONY: all clean
all: $(TARGET)
.c.o:
$(CC) $(CFLAGS) -c -o $@ $<
clean:
rm -f $(TARGET) *.a *.exe *.o ext_*