############################################################################## # # Makefile for capsind with Motif 1.2 and X11R6 # # $Source: /opt/spk-src/src/capsind/Makefile.HP-UX $ # $Revision: 1.1 $ $Date: 2000-08-14 13:59:51-07 $ # ############################################################################## HEADERS = # This variable contains the flags passed to cc. # DAportable is needed so that the program can be compiled on a C180 # and still work on earlier processors CFLAGS = +DAportable -s -W p,-H2000000 -DHPUX # CFLAGS = +DAportable -g -W p,-H2000000 # This variable lists the subdirectories to search for include files. INCLUDES = -I/usr/include/Motif1.2\ -I/usr/include/X11R6 # This variable lists the required libraries. # Link in the shared libraries LIBS = /usr/lib/Motif1.2_R6/libXm.sl\ /usr/lib/X11R6/libXt.sl\ /usr/lib/X11R6/libX11.sl\ -lPW\ -lm all : capsind capsind : capsind.o cc capsind.o $(CFLAGS) $(LIBS) -o capsind chmod 555 capsind capsind.o : $(HEADERS) capsind.c cc -c $(CFLAGS) $(INCLUDES) capsind.c