Makefile
上传用户:mei_mei897
上传日期:2007-01-05
资源大小:82k
文件大小:2k
源码类别:

手机短信编程

开发平台:

Unix_Linux

  1. # -------------------------------------------------------------------- 
  2. # SMS Client, send messages to mobile phones and pagers
  3. #
  4. # Makefile
  5. #
  6. #  Copyright (C) 1997,1998 Angelo Masci
  7. #
  8. #  This library is free software; you can redistribute it and/or
  9. #  modify it under the terms of the GNU Library General Public
  10. #  License as published by the Free Software Foundation; either
  11. #  version 2 of the License, or (at your option) any later version.
  12. #
  13. #  This library is distributed in the hope that it will be useful,
  14. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16. #  Library General Public License for more details.
  17. #
  18. #  You should have received a copy of the GNU Library General Public
  19. #  License along with this library; if not, write to the Free
  20. #  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  21. #
  22. #  You can contact the author at this e-mail address:
  23. #
  24. #  angelo@styx.demon.co.uk
  25. #
  26. # -------------------------------------------------------------------- 
  27. # $Id$
  28. # -------------------------------------------------------------------- 
  29. include ../../Makefile.config
  30. # --------------------------------------------------------------------
  31. all: gs_parser.a
  32. test: test_parser
  33. clean:
  34. $(RM) gs_parser.a  *.o *.bak test_parser
  35. # --------------------------------------------------------------------
  36. INCLUDE = -I..
  37. gs_parser.a: gs_list.o gs_parser.o gs_token.o gs_translate.o 
  38. $(AR) -rc gs_parser.a gs_list.o gs_parser.o gs_token.o gs_translate.o
  39. gs_list.o: gs_list.c gs_token.h ../common.h
  40. $(CC) -g  $(CFLAGS) $(INCLUDE) -c gs_list.c
  41. gs_parser.o: gs_parser.c gs_token.h ../common.h gs_parser.h
  42. $(CC) -g $(CFLAGS) $(INCLUDE) -c gs_parser.c
  43. gs_token.o: gs_token.c gs_token.h ../common.h gs_list.h
  44. $(CC) -g $(CFLAGS) $(INCLUDE) -c gs_token.c
  45. gs_translate.o: gs_translate.c gs_token.h ../common.h gs_list.h
  46. $(CC) -g $(CFLAGS) $(INCLUDE) -c gs_translate.c
  47. test_parser: gs_parser.a test_parser.c ../logfile.o ../common.o
  48. $(CC) -g $(CFLAGS) $(INCLUDE) test_parser.c gs_parser.a -o test_parser ../common.o ../logfile.o -DMLOGLEVEL=3 -DMLOGFILE=""test_log""
  49. # --------------------------------------------------------------------
  50. ../logfile.o: ../logfile.c ../logfile.h
  51. cd .. ; make logfile.o
  52. ../common.o: ../common.c ../common.h
  53. cd .. ; make common.o
  54. # --------------------------------------------------------------------