swig/Examples/GIFPlot/Makefile.in
William S Fulton 34a628c7c7 Revert rev 11918 "merge revisions 11872:11876 from trunk to gsoc2008-maciekd branch - license changes"
This reverts commit ec942f04ca8b33520442f079e2ea2d8d3e4be73c.

From: William S Fulton <wsf@fultondesigns.co.uk>

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-maciekd@13032 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2012-05-06 00:49:56 +00:00

23 lines
541 B
Makefile

prefix = @prefix@
exec_prefix = @exec_prefix@
RANLIB = @RANLIB@
OPT =
INSTALL = ../install-sh -c
INSTALL_DATA = ${INSTALL} -m 644
SHELL = /bin/sh
all:
cd Lib && $(MAKE) OPT="$(OPT)"
install:
$(INSTALL_DATA) Include/gifplot.h $(prefix)/include/gifplot.h
$(INSTALL_DATA) libgifplot.a $(exec_prefix)/lib/libgifplot.a
$(RANLIB) $(exec_prefix)/lib/libgifplot.a
clean::
rm -f *.@OBJEXT@ *~ libgifplot.a *_wrap* *_man*
cd Lib && $(MAKE) clean
rm -f config.log config.status config.cache
check: all