makefile 204 字节
Newer Older
1
all:
2 3 4 5 6 7 8 9
	gcc -g httpTest.c -o httpTest -lpthread
	gcc -g httpTestSqlt.c -o httpTestSqlt -lpthread
	gcc -g httpTestSqlUtc.c -o httpTestSqlUtc -lpthread

clean:
	rm httpTest
	rm httpTestSqlt
	rm httpTestSqlUtc