home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 479a.lha / barn_v2.01 / source / Makefile < prev    next >
Makefile  |  1991-02-10  |  782b  |  32 lines

  1. CFLAGS = -c -O +filter +pure-strings +echo
  2. #CFLAGS = -c -g3 +filter +pure-strings +echo
  3. BARN_OBJS = arn.o article.o configure.o ng.o kill.o reply.o raw.o sendpacket.o
  4. CC = cc
  5.  
  6. .c.o:
  7.     $(CC) $(CFLAGS) $<
  8.  
  9. all: barn
  10.  
  11. barn: $(BARN_OBJS)
  12.     $(CC) $(BARN_OBJS) +catch -lregexp -o barn
  13.  
  14. test: main.o article.o
  15.     blink from lib:c.o+main.o+article.o to test lib lib:$(CC).lib lib:amiga.lib addsym
  16.  
  17. Install: barn
  18.   copy barn uucp:c
  19.  
  20. arn.o: arn.c standard.h article.h ng.h kill.h configure.h variables.h reply.h screenstuff.h
  21.  
  22. article.o: article.c standard.h article.h configure.h variables.h
  23.  
  24. configure.o: configure.c standard.h configure.h
  25.  
  26. kill.o: kill.c standard.h article.h kill.h
  27.  
  28. ng.o: ng.c standard.h article.h ng.h
  29.  
  30. reply.o: reply.c standard.h configure.h variables.h article.h reply.h
  31.  
  32.