home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume6 / lbl / src / Makefile < prev    next >
Encoding:
Makefile  |  1986-11-30  |  446 b   |  21 lines

  1. OBJS=lbl.o actions.o build.o error.o externs.o find.o keyword.o list.o printl.o rescan.o scan.o signals.o
  2. SRCS=lbl.c actions.c build.c error.c externs.c find.c keyword.c list.c printl.c rescan.c scan.c signals.c
  3. HDR=../hdr
  4.  
  5. CFLAGS=-O -I$(HDR)
  6. LDFLAGS=-i
  7.  
  8. lbl:    $(OBJS)
  9.     cc -o lbl $(LDFLAGS) $(OBJS)
  10.  
  11. lint:    $(SRCS)
  12.     lint -abchx $(SRCS)
  13.  
  14. tags:    $(SRCS)
  15.     ctags $(SRCS)
  16.  
  17. clean:
  18.     rm -f *.o tags lbl
  19.  
  20. $(OBJS): $(HDR)/lbl.h $(HDR)/types.h $(HDR)/ftypes.h
  21.