全部博文(252)
分类: C/C++
2008-03-26 08:44:28
chinaunix网友2010-01-05 13:54:42
CC = gcc CFLAGS = -Wall -O2 all: http_test udp_test http_test: http_test.o $(CC) $(CFLAGS) -o $@ $< udp_test: udp_test.o $(CC) $(CFLAGS) -o $@ $< http_test.o: udp_test.o: clean: rm -f http_test udp_test *.o