Makefile.txt
上传用户:bilang918
上传日期:2010-03-24
资源大小:558k
文件大小:0k
源码类别:

网络

开发平台:

Unix_Linux

  1. all: server client
  2. server: server.c ../common/common.c
  3. gcc -o server server.c ../common/common.c
  4. client: client.c ../common/common.c
  5. gcc -o client client.c ../common/common.c
  6. clean:
  7. rm -f *.o *.bak server client