Changeset ff7e14a in git
- Timestamp:
- Sep 29, 2011, 3:03:38 PM (12 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- bebd746739b98e1580e2d7b75cf326c9350f2a7b
- Parents:
- 36ef6e07e25fef0cf8a7200794f7cd40d94d69fd
- git-author:
- Volker Braun <vbraun.name@gmail.com>2011-09-29 15:03:38+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:49+01:00
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.am
r36ef6e0 rff7e14a 224 224 # Singularg_CPPFLAGS = 225 225 226 227 ######################################################### 228 # the Singular library (*.lib files) 229 230 include ${srcdir}/singular-libs 231 232 singularlibrarydir = ${datadir}/singular 233 nobase_dist_singularlibrary_DATA = LIB/all.lib $(SLIB0:%=LIB/%) $(SLIB1:%=LIB/%) $(PLIBS:%=LIB/%) 234 EXTRA_DIST = make_alllib.sh LIB/all.lib.tmpl singular-libs 235 236 LIB/all.lib: ${srcdir}/make_alllib.sh ${srcdir}/LIB/all.lib.tmpl ${nobase_dist_singularlibrary_DATA} 237 $(MKDIR_P) LIB 238 ${srcdir}/make_alllib.sh ${srcdir}/LIB/all.lib.tmpl ${SLIB0} ${PLIBS} 239 226 240 ########################### TEST ######################### 227 241 … … 250 264 251 265 # These files are built first 252 BUILT_SOURCES = feOpt.inc mpsr_Tok.inc iparith.inc plural_cmd.inc feOptTS.inc feOptES.inc 266 BUILT_SOURCES = feOpt.inc mpsr_Tok.inc iparith.inc plural_cmd.inc feOptTS.inc feOptES.inc LIB/all.lib 253 267 254 268 CLEANFILES = $(BUILT_SOURCES) -
Singular/make_alllib.sh
r36ef6e0 rff7e14a 1 1 #!/bin/sh 2 2 cp $1 LIB/all.lib.n 3 chmod u+rw LIB/all.lib.n 3 4 shift 4 5 for i in $* … … 6 7 echo "LIB \"$i\";" >>LIB/all.lib.n 7 8 done 9 chmod u-w LIB/all.lib.n 8 10 mv LIB/all.lib.n LIB/all.lib
Note: See TracChangeset
for help on using the changeset viewer.