Makefile.in 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. # Makefile for src/compat/
  2. # $Id: Makefile.in,v 1.5 2000/09/12 15:26:51 fabian Exp $
  3. SHELL = @SHELL@
  4. top_srcdir = @top_srcdir@
  5. srcdir = @srcdir@
  6. VPATH = @srcdir@
  7. @SET_MAKE@
  8. INSTALL = @INSTALL@
  9. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  10. INSTALL_DATA = @INSTALL_DATA@
  11. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  12. CC = @CC@
  13. LD = @CC@
  14. STRIP = @STRIP@
  15. CFLAGS = @CFLAGS@ -I../.. -I$(top_srcdir) -I$(top_srcdir)/src @DEFS@ $(CFLGS)
  16. CPPFLAGS = @CPPFLAGS@
  17. OBJS = inet_aton.o snprintf.o memset.o memcpy.o strcasecmp.o strftime.o
  18. doofus:
  19. @echo ""
  20. @echo "Let's try this from the right directory..."
  21. @echo ""
  22. @cd ../.. && $(MAKE)
  23. depend:
  24. $(CC) $(CFLAGS) $(CPPFLAGS) -MM $(srcdir)/*.c > .depend
  25. clean:
  26. @rm -f .depend *.o *~
  27. compat: $(OBJS)
  28. .SUFFIXES:
  29. .SUFFIXES: .c .o .h
  30. .c.o:
  31. $(CC) $(CFLAGS) $(CPPFLAGS) -c $<
  32. #safety hash
  33. gnu_strftime.o: ./gnu_strftime.c
  34. inet_aton.o: ./inet_aton.c ../../src/main.h ../../config.h \
  35. ../../src/lang.h ../../src/eggdrop.h ../../src/flags.h \
  36. ../../src/proto.h ../../lush.h ../../src/misc_file.h ../../src/cmdt.h \
  37. ../../src/tclegg.h ../../src/tclhash.h ../../src/chan.h \
  38. ../../src/users.h ../../src/compat/compat.h \
  39. ../../src/compat/inet_aton.h ../../src/compat/snprintf.h \
  40. ../../src/compat/memset.h ../../src/compat/memcpy.h \
  41. ../../src/compat/strcasecmp.h ../../src/compat/strftime.h inet_aton.h
  42. memcpy.o: ./memcpy.c ../../src/main.h ../../config.h ../../src/lang.h \
  43. ../../src/eggdrop.h ../../src/flags.h ../../src/proto.h ../../lush.h \
  44. ../../src/misc_file.h ../../src/cmdt.h ../../src/tclegg.h \
  45. ../../src/tclhash.h ../../src/chan.h ../../src/users.h \
  46. ../../src/compat/compat.h ../../src/compat/inet_aton.h \
  47. ../../src/compat/snprintf.h ../../src/compat/memset.h \
  48. ../../src/compat/memcpy.h ../../src/compat/strcasecmp.h \
  49. ../../src/compat/strftime.h memcpy.h
  50. memset.o: ./memset.c ../../src/main.h ../../config.h ../../src/lang.h \
  51. ../../src/eggdrop.h ../../src/flags.h ../../src/proto.h ../../lush.h \
  52. ../../src/misc_file.h ../../src/cmdt.h ../../src/tclegg.h \
  53. ../../src/tclhash.h ../../src/chan.h ../../src/users.h \
  54. ../../src/compat/compat.h ../../src/compat/inet_aton.h \
  55. ../../src/compat/snprintf.h ../../src/compat/memset.h \
  56. ../../src/compat/memcpy.h ../../src/compat/strcasecmp.h \
  57. ../../src/compat/strftime.h memset.h
  58. snprintf.o: ./snprintf.c ../../src/main.h ../../config.h \
  59. ../../src/lang.h ../../src/eggdrop.h ../../src/flags.h \
  60. ../../src/proto.h ../../lush.h ../../src/misc_file.h ../../src/cmdt.h \
  61. ../../src/tclegg.h ../../src/tclhash.h ../../src/chan.h \
  62. ../../src/users.h ../../src/compat/compat.h \
  63. ../../src/compat/inet_aton.h ../../src/compat/snprintf.h \
  64. ../../src/compat/memset.h ../../src/compat/memcpy.h \
  65. ../../src/compat/strcasecmp.h ../../src/compat/strftime.h snprintf.h
  66. strcasecmp.o: ./strcasecmp.c ../../src/main.h ../../config.h \
  67. ../../src/lang.h ../../src/eggdrop.h ../../src/flags.h \
  68. ../../src/proto.h ../../lush.h ../../src/misc_file.h ../../src/cmdt.h \
  69. ../../src/tclegg.h ../../src/tclhash.h ../../src/chan.h \
  70. ../../src/users.h ../../src/compat/compat.h \
  71. ../../src/compat/inet_aton.h ../../src/compat/snprintf.h \
  72. ../../src/compat/memset.h ../../src/compat/memcpy.h \
  73. ../../src/compat/strcasecmp.h ../../src/compat/strftime.h memcpy.h
  74. strftime.o: ./strftime.c ../../src/main.h ../../config.h \
  75. ../../src/lang.h ../../src/eggdrop.h ../../src/flags.h \
  76. ../../src/proto.h ../../lush.h ../../src/misc_file.h ../../src/cmdt.h \
  77. ../../src/tclegg.h ../../src/tclhash.h ../../src/chan.h \
  78. ../../src/users.h ../../src/compat/compat.h \
  79. ../../src/compat/inet_aton.h ../../src/compat/snprintf.h \
  80. ../../src/compat/memset.h ../../src/compat/memcpy.h \
  81. ../../src/compat/strcasecmp.h ../../src/compat/strftime.h strftime.h