home *** CD-ROM | disk | FTP | other *** search
Makefile | 1988-10-20 | 591 b | 33 lines |
-
- # kludge makefile...
-
- #.c.o:
- # xcc -c $<
-
- CFLAGS = -O
-
- make.ttp : make.o arscan.o glob.o cruft.o
- cc -s -o make.ttp make.o arscan.o glob.o cruft.o
-
- #
- # the 'regular' linker, produces atari executables
- #
- ld.ttp : ld.c
- cc -s -o ld.ttp -O ld.c
-
- #
- # the other linker, (really the original one) that creates
- # pseudo executables suitable for use with gdb
- #
- sym-ld.ttp : sym-ld.c
- cc -s -o sym-ld.ttp -O sym-ld.c
-
- xld.ttp : xld.c
- cc -c -O xld.c
- ld -s -o xld.ttp f:\gnu\lib\crt0.o xld.o -lgnu.olb
-
- #
- # obj file describer?
- #
- nm.ttp : nm.c
- cc -s -o nm.ttp -O nm.c