chsrc/Makefile

18 lines
246 B
Makefile
Raw Normal View History

2023-08-28 22:21:33 +08:00
CFLAGS =
TARGET = target
#=======================
all:
@echo Compile
@gcc chsrc.c $(CFLAGS) -o $(TARGET)
2023-08-30 09:54:35 +08:00
test:
@gcc test_helper.c -o test
@./test
clean:
-@rm *.exe 2>/dev/null
-@rm $(TARGET) 2>/dev/null
-@rm ./test 2>/dev/null