7 lines
71 B
Makefile
7 lines
71 B
Makefile
all:main
|
|
|
|
main:main.o sqlist.o
|
|
$(CC) $^ -o $@
|
|
|
|
clean:
|
|
rm *.o main -rf
|