home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / forut062.zip / ForUtil-0.62 / lib / Makefile.conf < prev    next >
Makefile  |  1996-11-11  |  2KB  |  100 lines

  1. # Generated automatically from Makefile.in by configure.
  2. #
  3. # $Header: /usr/local/rcs/ForUtil/lib/RCS/Makefile.in,v 1.1 1996/08/07 21:16:49 koen Exp koen $
  4. #
  5. # Makefile.in for the ForUtil library
  6. #
  7. # (C)Copyright 1995-1996 Ripley Software Development
  8. # All Rights Reserved
  9. #
  10. # This file is free software; you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation; either version 2 of the License, or
  13. # (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License
  21. # along with this program; if not, write to the Free Software
  22. # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 
  23.  
  24. CC = gcc
  25. CFLAGS= -g
  26. CPPFLAGS=
  27. LDFLAGS=
  28.  
  29. LIBS= -L. -L../lib $(LOADLIBES) -lforUtil -lgdbm
  30.  
  31. DEFS = -DHAVE_CONFIG_H
  32.  
  33. ALL_INCLUDES= -I. -I../. -I../lib $(INCLUDES) 
  34. ALL_CPPFLAGS= $(CPPFLAGS) $(ALL_INCLUDES) $(DEFS)
  35.  
  36. RM = rm -f
  37. AR = ar crv
  38. RANLIB = ar srv
  39. DEPEND = gccmakedep
  40.  
  41. # Installation program
  42. install=.././install-sh -c
  43.  
  44. SRCS = stringutil.c filelist.c environment.c SplitPath.c alloca.c
  45.  
  46. HEADERS = forutil.h sysdeps.h memmacros.h
  47.  
  48. OBJS = stringutil.o filelist.o environment.o SplitPath.o 
  49.  
  50. ALLSRC= $(SRCS)
  51.  
  52. ALLOBJ= $(OBJS)
  53.  
  54. TARGETS= libforUtil.a
  55.  
  56. #### End of Configuration section
  57.  
  58. #### Start of Compilation rules 
  59.  
  60. #rule to create .o files from .c files 
  61. .c.o:
  62.     $(RM) $@
  63.     $(CC) $(CFLAGS) $(ALL_CPPFLAGS) -c $< -o $@
  64.  
  65. #rule to create .c files from .l files
  66. .l.c:
  67.     $(RM) $@ 
  68.     $(LEX) $(LEXFLAGS) $<
  69.     mv lex.yy.c $@
  70.  
  71. #### End of Compilation Rules
  72.  
  73. #### Start of possible targets
  74.  
  75. all:: $(TARGETS) 
  76.  
  77. libforUtil.a:: $(OBJS)
  78.     $(RM) $@ \ 
  79.     $(AR) $@ $(OBJS)
  80.     $(RANLIB) $@
  81.  
  82. install:
  83. .PHONY: install
  84.  
  85. uninstall:
  86. .PHONY: uninstall
  87.  
  88. depend: $(ALLSRC) 
  89.     $(DEPEND) $(ALL_CPPFLAGS) $(ALLSRC)
  90.  
  91. mostlyclean:
  92.     $(RM) $(ALLOBJ)
  93.     $(RM) *.bak *.out core a.out 
  94.  
  95. clean:: mostlyclean 
  96.     $(RM) $(TARGETS) 
  97.  
  98. distclean: clean
  99.     $(RM) Makefile 
  100.