home *** CD-ROM | disk | FTP | other *** search
Makefile | 1991-08-26 | 1.5 KB | 53 lines |
- # Copyright (c) 1991 Xerox Corporation. All Rights Reserved.
- #
- # Permission to use, copy, modify and distribute without
- # charge this software, documentation, images, etc. is grant-
- # ed, provided that this copyright and the author's name is
- # retained.
- #
- # A fee may be charged for this program ONLY to recover costs
- # for distribution (i.e. media costs). No profit can be made
- # on this program.
- #
- # The author assumes no responsibility for disasters (natural
- # or otherwise) as a consequence of use of this software.
- #
- # Adam Stein (stein.wbst129@xerox.com)
-
- # Name of program to build
- TARGET=xtoolplaces
-
- # Binary and man page directory to install to
- BINDIR=/usr/local/bin
- MANDIR=/usr/local/man/man1
-
- # Top level of X directory structure
- XTOP=/usr2/openwin
-
- CFLAGS=-I${XTOP}/include
-
- INCS=addon.h patchlevel.h xtoolplaces.h
- SRCS=copyright.c adddisplay.c addon.c combine.c fix_command.c\
- get_geometry.c getinfo.c is.c make_list.c missing.c strstr.c\
- xtoolplaces.c
- OBJS=copyright.o adddisplay.o addon.o combine.o fix_command.o\
- get_geometry.o getinfo.o is.o make_list.o missing.o strstr.o\
- xtoolplaces.o
-
- .KEEP_STATE:
-
- ${TARGET}: ${OBJS}
- ${CC} -o ${TARGET} ${OBJS} -lX11
-
- install: ${TARGET}
- install -s ${TARGET} ${BINDIR}
- install ${TARGET}.man ${MANDIR}/${TARGET}.1
-
- clean:
- rm -f core makelog ${TARGET} ${OBJS}
-
- shar:
- shar -c -o ${TARGET} -l 75 README MANIFEST Imakefile Makefile.simple \
- xtoolplaces.man ${SRCS} ${INCS} addon.sample missing.sample
-
-