mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-22 04:34:38 +00:00
11 lines
132 B
Makefile
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_*
|