Files
2024-04-28 13:10:56 +08:00

7 lines
71 B
Makefile

all:main
main:main.o sqlist.o
$(CC) $^ -o $@
clean:
rm *.o main -rf