home *** CD-ROM | disk | FTP | other *** search
Makefile | 1990-08-20 | 938 b | 39 lines |
- #=============================================================================
- #
- # Name - simple.mak
- #
- # Version: 1.3
- #
- # ccsid: @(#)simple.mak 1.3 - 8/20/90 09:55:13
- # from: ccs/s.simple.mak
- # date: 8/20/90 09:56:01
- #
- # Description: make file for xgrabsc. Use "make -f simple.mak"
- #
- #=============================================================================
-
-
- # change INSTALL_PATH to the directory in which you want xgrabsc installed
- INSTALL_PATH = /usr/bin/X11
-
- # change MAN_PATH to point to your man page top directory
- MAN_PATH = /usr/man
- # change MAN_EXT to the section for xgrabsc
- MAN_EXT = 1
-
- # if you trust your optimizer, change 'g' to 'O'
- CFLAGS = -g
-
- xgrabsc:: xgrabsc.o
- rm -f xgrabsc
- $(CC) $(CFLAGS) -o xgrabsc xgrabsc.o -lX11
-
- install::
- install -c -s xgrabsc $(INSTALL_PATH)
- install -c -m 644 xgrabsc.man \
- $(MAN_PATH)/man$(MAN_EXT)/xgrabsc.$(MAN_EXT)X
-
- clean::
- rm -f core *.o xgrabsc *.log
-
-