home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-10-23 | 283 b | 19 lines |
- #
- # Makefile for the optimizer
- #
- CC=cc
-
- OBJ = main.o io.o util.o sym.o func.o branch.o inst.o opcodes.o \
- health.o data.o peep1.o peep2.o peep3.o reg.o
-
- CFLAGS = -O -DBSD $(DEBUG)
-
- top.ttp : $(OBJ)
- $(CC) $(OBJ) -o ../../bin/top.ttp
-
- clean:
- $(RM) *.o
-
- clobber:
- $(RM) *.o xtop.ttp
-