Makefile
上传用户:ai20ln
上传日期:2007-01-05
资源大小:79k
文件大小:1k
源码类别:

ICQ/即时通讯

开发平台:

Unix_Linux

  1. # Anyone who knows how to make Makefiles please help out.
  2. # I have no clue but this appears to work fairly well
  3. # be sure to use gmake
  4. CC = gcc
  5. CFLAGS = -O2 -Wall -DUNIX -DANSI_COLOR 
  6. # Uncomment the below line for humorous messages
  7. #CFLAGS += -DFUNNY_MSGS 
  8. # uncomment the line below for debuging info
  9. #CFLAGS += -g
  10. CLIBS = 
  11. #uncomment the line below if your using Solaris
  12. #CLIBS= -lnsl -lsocket
  13. #uncomment the line below if your using MiNT
  14. #CLIBS= -lsocket
  15. #uncomment the line below if your using NeXT
  16. #CFLAGS += -posix
  17. OBJS =icq_response.o micq.o sendmsg.o rus_conv.o server.o ui.o util.o msg_queue.o
  18. HEADERS = datatype.h micq.h ui.h msg_queue.h
  19. #
  20. all : micq
  21. re : clean all
  22. micq : ${OBJS} ${HEADERS} 
  23. ${CC} ${CFLAGS} -o micq ${OBJS} ${CLIBS}
  24. ${OBJS} : ${HEADERS}
  25. clean :
  26. rm -f ${OBJS}