home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff218.lzh / EdLib / makefile < prev    next >
Makefile  |  1989-06-04  |  811b  |  35 lines

  1. #
  2. # makefile for the edlib library source directory
  3. # Copyright 1989 Edwin Hoogerbeets
  4. #
  5. # make sure that lb is in your path or make will give you an exec failure
  6. #
  7.  
  8. #
  9. # add +L to compile ed32.lib, and leave blank for ed.lib
  10. #
  11. CFLAGS=+L +fi
  12.  
  13. OBJS= bintoint.o dectoint.o getopt.o hextoint.o isbdigit.o \
  14.       iscsym.o iscsymf.o isodigit.o stolower.o stoupper.o \
  15.       strcspn.o strpbrk.o strpos.o strrpos.o strspn.o \
  16.       strtok.o toint.o basename.o stricmp.o strnicmp.o \
  17.       strrpbrk.o strtod.o strdup.o getcwd.o chdir.o \
  18.       filetype.o
  19.  
  20. test32: test.o ed32.lib
  21.         ln test.o -led32 -lma32 -lc32 -o test32
  22.  
  23. test: test.o ed.lib
  24.         ln test.o -led -lma -lc -o test
  25.  
  26. ed32.lib: $(OBJS)
  27.         lb ed32.lib $(OBJS)
  28.  
  29. ed.lib: $(OBJS)
  30.         lb ed.lib $(OBJS)
  31.  
  32. clean:
  33.         -shell -c "rm $(OBJS)"
  34.  
  35.