home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-07-08 | 2.1 KB | 74 lines |
- # Makefile for LHArc Atari ST tos-gcc
- #
- # derived from Makefile for unix
- # Copyright(C) MCMLXXXIX Yooichi.Tagawa
- # V0.01 Alpha Version 1989.05.28 Y.Tagawa
- # V0.02 Alpha Version R2 1989.05.29 Y.Tagawa
- # V0.03 Release #3 Beta Version 1989.07.02 Y.Tagawa
-
- #-----------------------------------------------------------------------
- # DIRECTORY ACCESS DEPENDENDS...
- # The default (no need swtich) is your machine has
- # opendir(),readdir(),closedir() library and 'direct' structure used.
- # If your machine has no opendir (), readdir (), closedir ()
- # -DNONSYSTEM_DIR_LIBRARY
- # and add lhdir.o into OBJS macro (see bellow)
- # If your machine are 'dirent' (not 'direct') structure used,
- # -DSYSV_SYSTEM_DIR
- # Otherwise "Give up!"
- # -DNODIRECTORY
- #
- #-----------------------------------------------------------------------
- # MEMORY ACCESS STUFF
- # Your machine has no BSTRING library (bcmp,bcopy,bzero).
- # -DNOBSTRING
- #
- #-----------------------------------------------------------------------
- # TIME STUFF
- # Your include file '<sys/time.h>' has no 'struct tm', define this.
- # -DSYSTIME_HAS_NO_TM
- #
-
- # most of 4.[23]BSD
- # - vax 4.[23]BSD, SONY NEWS 4.[23]BSD etc.
- SWITCHIES = -DSYSV_SYSTEM_DIR -O -mshort -fstrength-reduce -pg
- OBJS = lharc.o lzhuf.o lhio.o atari.o dirent.o
-
- # brain damaged 4.[23]BSD clones (shit like uglix, hpux and other brain death)
- # - fucking uglix, uglix on vax or mips
- # (dont try -O3 or -O4 on mips-uglix, it blows up the compiler)
- #SWITCHIES = -O -Dultrix
- #OBJS = lharc.o lzhuf.o lhio.o
-
- # sample of System-V
- # - NEC EWS4800
- #SWITCHIES = -DNONSYSTEM_DIR_LIBRARY -DSYSTIME_HAS_NO_TM
- #OBJS = lharc.o lzhuf.o lhio.o lhdir.o
-
-
- CC = cgcc
- CFLAGS = $(SWITCHIES)
- LDFLAGS = -mshort -pg
-
- # Xlharc is test binary. Please rename to lharc at install.
- # (see install target)
- all: lharc.ttp
-
- lharc.ttp : $(OBJS)
- $(CC) $(LDFLAGS) -o $@ $(OBJS) -v
-
-
- # For Debugging LzHuff module.
- lzhuf : lzhuf.c
- $(CC) $(CFLAGS) -DSELFMAIN -o $* $*.c
-
- lzhuf.o lhio.o : lhio.h
-
-
- clean:
- rm -f core lharc.o lzhuf.o lhdir.o lhio.o lharc.tar lharc.tar.Z
-
- moreclean:
- rm -f core *.o lharc.tar lharc.tar.Z *~ #*
-
-