mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 20:24:39 +00:00
11 lines
126 B
Makefile
11 lines
126 B
Makefile
.SUFFIXES: .c .o
|
|
.PHONY: all clean
|
|
|
|
all: $(TARGET)
|
|
|
|
.c.o:
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
clean:
|
|
rm -f $(TARGET) *.a *.exe *.o
|