home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / OS2 / gnuinfo.zip / lib / Makefile.emx < prev    next >
Makefile  |  1997-12-29  |  545b  |  29 lines

  1. # Makefile for GNU texinfo/libtxi.  -*- Indented-Text -*-
  2. # Copyright (C) 1993 Free Software Foundation, Inc.
  3.  
  4. OBJS =  getopt$O getopt1$O xmalloc$O strdup$O xstrdup$O \
  5.     pc$O termcap$O tparam$O ntansi$O
  6.  
  7. DEFS = -DHAVE_CONFIG_H -I. -I.. -I../intl
  8.  
  9. all: texinfo$A
  10.  
  11. .SUFFIXES: .c $O
  12.  
  13. .c$O:
  14.     $(CC) $(CFLAGS) $(DEFS) -c $<
  15.  
  16. texinfo$A: $(OBJS)
  17.     -del $@
  18.     $(AR) crv $@ $(OBJS)
  19.     $(RANLIB) $@
  20.  
  21. $(OBJS): ../config.h
  22.  
  23. getopt$O: getopt.c getopt.h
  24. getopt1$O: getopt1.c getopt.h
  25. alloca$O: alloca.c
  26.  
  27. clean:
  28.     -del *.o *.obj *.a *.lib
  29.