diff options
Diffstat (limited to 'nx-X11/extras/Xpm/lib/Makefile.noX')
-rw-r--r-- | nx-X11/extras/Xpm/lib/Makefile.noX | 112 |
1 files changed, 112 insertions, 0 deletions
diff --git a/nx-X11/extras/Xpm/lib/Makefile.noX b/nx-X11/extras/Xpm/lib/Makefile.noX new file mode 100644 index 000000000..89edfd78f --- /dev/null +++ b/nx-X11/extras/Xpm/lib/Makefile.noX @@ -0,0 +1,112 @@ +# +# Copyright (C) 1989-95 GROUPE BULL +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to +# deal in the Software without restriction, including without limitation the +# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or +# sell copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in +# all copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# GROUPE BULL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN +# AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +# +# Except as contained in this notice, the name of GROUPE BULL shall not be +# used in advertising or otherwise to promote the sale, use or other dealings +# in this Software without prior written authorization from GROUPE BULL. +# + +# +# XPM Makefile - Arnaud LE HORS +# + +# if your system doesn't provide strcasecmp add -DNEED_STRCASECMP +# if your system doesn't provide strdup add -DNEED_STRDUP +# if your system doesn't provide pipe add -DNO_ZPIPE +# if on your system sprintf doesn't return the number of bytes transmitted +# add -DVOID_SPRINTF +DEFINES = + +# where the library will be installed +DESTLIBDIR=/usr/local/lib/X11 +# where the include file (pxm.h) will be installed +DESTINCLUDEDIR=/usr/local/include/X11 + +CC = cc +AR = ar r +RANLIB = ranlib +RM = rm -f +# on sysV, define this as cp. +INSTALL = install -c +MKDIRHIER = mkdir +LN = ln -s + +CDEBUGFLAGS= -O + +OBJS= data.o create.o misc.o rgb.o scan.o parse.o hashtab.o \ + WrFFrP.o RdFToP.o CrPFrDat.o CrDatFrP.o \ + WrFFrI.o RdFToI.o CrIFrDat.o CrDatFrI.o \ + CrIFrBuf.o CrPFrBuf.o CrBufFrI.o CrBufFrP.o \ + RdFToDat.o WrFFrDat.o \ + Attrib.o CrIFrP.o CrPFrI.o Image.o Info.o RdFToBuf.o WrFFrBuf.o + +CFLAGS= $(CDEBUGFLAGS) $(DEFINES) $(INCLUDES) + +all: ../X11/xpm.h libXpm.a + +clean: + $(RM) *.o libXpm.a + +libXpm.a: $(OBJS) + $(AR) libXpm.a $(OBJS) + $(RANLIB) libXpm.a + +install: + $(INSTALL) -m 0664 libXpm.a $(DESTLIBDIR) + cd $(DESTLIBDIR); $(RANLIB) libXpm.a + -mkdir $(DESTINCLUDEDIR) + -chmod ugo+rx $(DESTINCLUDEDIR) + $(INSTALL) -m 0444 xpm.h $(DESTINCLUDEDIR) + +../X11/xpm.h: xpm.h + @if [ -d ../X11 ]; then set +x; \ + else (set -x; $(MKDIRHIER) ../X11); fi + $(RM) ../X11/xpm.h; \ + $(LN) ../lib/xpm.h ../X11 + +# Other dependencies. +CrBufFrI.o: XpmI.h xpm.h +CrBufFrP.o: XpmI.h xpm.h +CrDatFI.o: XpmI.h xpm.h +CrDatFP.o: XpmI.h xpm.h +CrIFrBuf.o: XpmI.h xpm.h +CrIFrDat.o: XpmI.h xpm.h +CrPFrBuf.o: XpmI.h xpm.h +CrPFrDat.o: XpmI.h xpm.h +RdFToDat.o: XpmI.h xpm.h +RdFToI.o: XpmI.h xpm.h +RdFToP.o: XpmI.h xpm.h +WrFFrDat.o: XpmI.h xpm.h +WrFFrI.o: XpmI.h xpm.h +WrFFrP.o: XpmI.h xpm.h +create.o: XpmI.h xpm.h +data.o: XpmI.h xpm.h +hashtab.o: XpmI.h xpm.h +misc.o: XpmI.h xpm.h +parse.o: XpmI.h xpm.h +rgb.o: XpmI.h xpm.h +scan.o: XpmI.h xpm.h +Attrib.o: XpmI.h xpm.h +CrIFrP.o: XpmI.h xpm.h +CrPFrI.o: XpmI.h xpm.h +Image.o: XpmI.h xpm.h +Info.o: XpmI.h xpm.h +RdFToBuf.o: XpmI.h xpm.h +WrFFrBuf.o: XpmI.h xpm.h |