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

手机短信编程

开发平台:

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: npipe.o
  32. test: test_queue test_write
  33. clean:
  34. $(RM) *.o *.bak test_queue test_write
  35. # --------------------------------------------------------------------
  36. INCLUDE = -I.. -I../parser
  37. # --------------------------------------------------------------------
  38. gs_parser:
  39. cd ../parser ; make gs_parser.a
  40. npipe.o: npipe.c ../common.h ../logfile.h npipe.h
  41. $(CC) $(CFLAGS) -c npipe.c $(INCLUDE)
  42. process.o: process.c ../common.h ../logfile.h process.h
  43. $(CC) $(CFLAGS) -c process.c $(INCLUDE)
  44. test_queue.o: test_queue.c ../common.h ../logfile.h npipe.h
  45. $(CC) $(CFLAGS) -c test_queue.c $(INCLUDE)
  46. test_write.o: test_write.c ../common.h ../logfile.h
  47. $(CC) $(CFLAGS) -c test_write.c $(INCLUDE)
  48. test_queue: test_queue.o npipe.o process.o ../common.h ../logfile.h npipe.h process.h
  49. $(CC) $(CFLAGS) test_queue.o npipe.o process.o -o test_queue 
  50. test_write: test_write.o ../common.h ../logfile.h npipe.h
  51. $(CC) $(CFLAGS) test_write.o -o test_write
  52. # --------------------------------------------------------------------
  53. ../logfile.o: ../logfile.c ../logfile.h
  54. cd .. ; $(MAKE) logfile.o
  55. ../common.o: ../common.c ../common.h
  56. cd .. ; $(MAKE) common.o
  57. # --------------------------------------------------------------------