home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-07-08 | 2.6 KB | 105 lines |
- # Makefile for LHArc 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 = -DTSTFLG -D__ASM__INSDEL__ -O -fomit-frame-pointer -fcombine-regs -fstrength-reduce
- OBJS = lharc.o lzhuf.o lhio.o wild.o
-
- # brain damaged 4.[23]BSD clones (shit like uglix, hpux and other brain death)
- # (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 = gcc
- #CFLAGS = -g -O $(SWITCHIES)
- ##CC = cc
- ##CFLAGS = -g -p $(SWITCHIES)
- ##LDFLAGS = -p
- CC = gcc
- CFLAGS = $(SWITCHIES)
- TAPEFILES = READ.ME Makefile lharc.doc \
- lharc.c lzhuf.c lhdir.c lhdir.h lhio.c lhio.h
- DESTDIR = /usr/new
- # DESTDIR = /usr/local
-
-
- # Xlharc is test binary. Please rename to lharc at install.
- # (see install target)
- all: xlharc
-
- xlharc : $(OBJS)
- $(CC) $(LDFLAGS) -o $@ $(OBJS) -g
-
-
- # For Debugging LzHuff module.
- lzhuf : lzhuf.c
- $(CC) $(CFLAGS) -DSELFMAIN -o $* $*.c
-
- lharc.o lhdir.o : lhdir.h
- lzhuf.o lhio.o : lhio.h
- #id.o: id.s
- # $(CC) -g -c -o id.o id.s
-
-
- clean:
- rm -f core insdel.o lharc.o lzhuf.o lhdir.o lhio.o lharc.tar lharc.tar.Z
-
- moreclean:
- rm -f core *.o lharc.tar lharc.tar.Z *~ #*
-
- install:
- install -s xlharc $(DESTDIR)/lharc
-
- dist: lharc.tar.Z
-
- lharc.tar: $(TAPEFILES)
- mkdir dist.lharc
- ln $(TAPEFILES) dist.lharc
- tar cf lharc.tar dist.lharc
- rm -rf dist.lharc
-
- lharc.tar.Z: lharc.tar
- compress <lharc.tar >lharc.tar.Z
-
- distlzh:
- mkdir dist.lharc
- ln $(TAPEFILES) dist.lharc
- lharc c lharc.lzh dist.lharc
- rm -rf dist.lharc
-
- fixstamp:
- touch $(TAPEFILES)
-