home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / OS2 / gnuinfo.zip / util / Makefile.emx < prev    next >
Makefile  |  1997-11-22  |  559b  |  28 lines

  1. # Makefile for GNU Texindex.
  2. # Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
  3.  
  4. PROGS = texindex.exe deref.exe install-info.exe
  5.  
  6. all: $(PROGS)
  7.  
  8. .SUFFIXES: .c $O
  9.  
  10. .c$O:
  11.     $(CC) $(CFLAGS) -c $(INCL) $<
  12.  
  13. texindex.exe: texindex$O $(LIBS)
  14.     $(CC) texindex$O -o $@ $(LIBS) $(LFLAGS)
  15.  
  16. texindex$O: texindex.c ../lib/getopt.h
  17.  
  18. deref.exe: deref$O
  19.     $(CC) deref$O -o $@ $(LFLAGS)
  20.  
  21. install-info.exe: install-info$O
  22.     $(CC) install-info$O -o $@ $(LIBS) $(LFLAGS)
  23.  
  24. texindex$O deref$O install-info$O: ../config.h
  25.  
  26. clean:
  27.     -del *.o *.obj
  28.