home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-05-07 | 374 b | 22 lines |
- DEBUG= -O
- OPTS= +no-stack-check
- FLAGS= $(DEBUG) $(OPTS)
- CFLAGS= $(FLAGS) $(DEFINES)
- LFLAGS= $(FLAGS)
-
- LIBS=
-
- TARGET= cc
- OBJS= cc.o list.o dstr.o err.o op.o options.o
-
- $(TARGET): $(OBJS)
- ${CC} $(LFLAGS) -o $(TARGET) $(OBJS) $(LIBS)
-
- $(OBJS): common.h
- cc.o: list.h dstr.h op.h options.h config.h
- common.h: dbug.h
- options.o: options.h
- dstr.o: dstr.h
- list.o: list.h
- op.o: op.h
-