Changeset a0fdd20 in git for libfac/Makefile.in


Ignore:
Timestamp:
May 5, 1997, 3:44:20 PM (27 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38dfc5131670d387a89455159ed1e071997eec94')
Children:
6afd7cecd5184675716c671908744d5b9aeaa520
Parents:
3ebcbd28b8403b4bc998cf07c860e638a4ada801
Message:
Mon May  5 15:43:58 1997  Olaf Bachmann
<obachman@ratchwum.mathematik.uni-kl.de (Olaf Bachmann)>

	* added installation of templates


git-svn-id: file:///usr/local/Singular/svn/trunk@242 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libfac/Makefile.in

    r3ebcbd ra0fdd20  
    1 # $Id: Makefile.in,v 1.1.1.1 1997-05-02 17:00:43 Singular Exp $
     1# $Id: Makefile.in,v 1.2 1997-05-05 13:44:19 obachman Exp $
    22#################################################
    33SHELL           = /bin/sh
    4 RM              = -rm -f
     4RM              = rm -f
    55#################################################
    66TARGETNAME              = @targetname@
     
    2020libdir          = @libdir@
    2121includedir      = @includedir@
     22templatedir     = ${includedir}/templates
    2223
    2324##
     
    3738CXXFLAGS        = @CXXFLAGS@
    3839CXXTEMPLFLAGS   = @CXXTEMPLFLAGS@
    39 CPPFLAGS        = @CPPFLAGS@ -I${srcdir}
     40CPPFLAGS        = -I${srcdir} @CPPFLAGS@
    4041DEFS            = @DEFS@
    4142LDFLAGS         = @LDFLAGS@
     
    5960                factor/tmpl_inst.h factor/SqrFree.h factor/helpstuff.h \
    6061                factor/debug.h factor/timing.h factor/homogfactor.h
     62FACTORTEMPL =   factor/class.h factor/class.cc factor/tmpl_inst.h
     63
    6164CHARSETINCL =   charset/csutil.h charset/charset.h charset/reorder.h
    6265
     
    137140        ${MKINSTALLDIRS} ${includedir}
    138141        ${MKINSTALLDIRS} ${libdir}
     142        ${MKINSTALLDIRS} ${templatedir}
    139143        ${INSTALL_DATA} ${LIBFACINCLUDE} ${includedir}
    140144        ${INSTALL_PROGRAM} ${TARGETNAME}.a ${libdir}
    141 
     145        for TEMPL in ${FACTORTEMPL}; do \
     146                ${INSTALL_DATA} $${TEMPL} ${templatedir}; \
     147        done
    142148
    143149uninstall:
     
    145151        $(RM) ${libdir}/${LIBFACNAME}.a
    146152        $(RM) ${libdir}/${SINGLIBFACNAME}.a
     153        for TEMPL in ${FACTORTEMPL}; do \
     154                $(RM) ${templatedir}/$${TEMPL}; \
     155        done
    147156
    148157mostlyclean:
Note: See TracChangeset for help on using the changeset viewer.