home *** CD-ROM | disk | FTP | other *** search
Makefile | 1986-11-30 | 446 b | 21 lines |
- 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
- 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
- HDR=../hdr
-
- CFLAGS=-O -I$(HDR)
- LDFLAGS=-i
-
- lbl: $(OBJS)
- cc -o lbl $(LDFLAGS) $(OBJS)
-
- lint: $(SRCS)
- lint -abchx $(SRCS)
-
- tags: $(SRCS)
- ctags $(SRCS)
-
- clean:
- rm -f *.o tags lbl
-
- $(OBJS): $(HDR)/lbl.h $(HDR)/types.h $(HDR)/ftypes.h
-