nishbox/common.mk
2025-04-03 20:05:37 +09:00

11 lines
146 B
Makefile

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