home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume26 / philspell-1.0 / part01 / Makefile < prev    next >
Makefile  |  1993-05-01  |  321b  |  20 lines

  1. #CC = philcc
  2.  
  3. # Change the above to something like gcc or cc if you don't have philcc.
  4.  
  5. CFLAGS = -g -DNDEBUG
  6.  
  7. SOURCES = main.c skiplist.c
  8. OBJECTS = main.o skiplist.o
  9.  
  10. all: philspell
  11.  
  12. philspell: $(OBJECTS)
  13.     $(CC) $(OBJECTS) -o philspell
  14.  
  15. main.c: skiplist.h
  16. skiplist.c: skiplist.h
  17.  
  18. clean:
  19.     /bin/rm -rf $(OBJECTS) philspell
  20.