home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 240.lha / CC / sources / Makefile < prev    next >
Encoding:
Makefile  |  1989-05-07  |  374 b   |  22 lines

  1. DEBUG=    -O
  2. OPTS=    +no-stack-check
  3. FLAGS=    $(DEBUG) $(OPTS)
  4. CFLAGS= $(FLAGS) $(DEFINES)
  5. LFLAGS= $(FLAGS)
  6.  
  7. LIBS=
  8.  
  9. TARGET=    cc
  10. OBJS=    cc.o list.o dstr.o err.o op.o options.o
  11.  
  12. $(TARGET):    $(OBJS)
  13.     ${CC} $(LFLAGS) -o $(TARGET) $(OBJS) $(LIBS)
  14.  
  15. $(OBJS): common.h
  16. cc.o:    list.h dstr.h op.h options.h config.h
  17. common.h: dbug.h
  18. options.o: options.h
  19. dstr.o: dstr.h
  20. list.o: list.h
  21. op.o: op.h
  22.