home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-11-21 | 801 b | 40 lines |
- # Makefile for unsharmap under SCO XENIX 386
- #
- # Version : Wed, 16-May-90 / 19:11 / (pf@artcom0)
- # Documented for net distribution.
-
- # Things to do:
- # make make executables
- # make all " "
- # make install perform XENIX installation
- # make clean cleanup this directory
- # make clobber clean ...and remove executables from this dir
- # make shar create a file 'unpack-map.sha'
-
- SHELL= /bin/sh
- CFLAGS = -O
-
- OBJECTS = unsharmap.o
-
- all: unsharmap
-
- unsharmap: $(OBJECTS)
- cc $(CFLAGS) $(OBJECTS) -o unsharmap
-
- $(OBJECTS):
- cc $(CFLAGS) -c $<
-
- clean:
- rm -f *.o *.ln a.out core
-
- clobber: clean
- rm -f unsharmap
-
- install: all
- ./install
-
- shar:
- shar -cgvp'Z ' README map.daily mkpaths Makefile \
- unsharmap.c install avoid-unido \
- getmap patch.README > unpack-map.sha
-