source: git/Singular/Makefile.in @ eb9e69

spielwiese
Last change on this file since eb9e69 was eb9e69, checked in by Hans Schönemann <hannes@…>, 19 years ago
*hannes: version numbers, URLs git-svn-id: file:///usr/local/Singular/svn/trunk@8311 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 18.5 KB
Line 
1################################################################
2###
3### Makefile for Singular
4###
5#################################################################
6
7SHELL           = /bin/sh
8
9##
10## version
11##
12SINGULAR_VERSION        = @SINGULAR_VERSION@
13SINGULAR                = @SINGULAR@
14SINGUNAME               = @SINGUNAME@
15EXEC_EXT                = @EXEC_EXT@
16HAVE_PLURAL             = @PLURAL@
17##
18## various paths
19##
20srcdir          = @srcdir@
21prefix          = @prefix@
22exec_prefix     = @exec_prefix@
23libdir          = @libdir@
24# program executable goes here
25bindir          = @bindir@
26# includes are taken from here
27includedir      = @includedir@
28slibdir         = ${prefix}/LIB
29install_bindir  = ${install_prefix}/${SINGUNAME}
30install_slibdir = ${install_prefix}/LIB
31
32##
33## various programs
34##
35@SET_MAKE@
36CC              = @CC@
37LD              = @LD@
38CXX             = @CXX@
39LEX             = sh flexer.sh
40PERL            = @PERL@
41BISON           = bison
42INSTALL         = @INSTALL@
43INSTALL_PROGRAM = @INSTALL_PROGRAM@
44INSTALL_DATA    = @INSTALL_DATA@
45MKINSTALLDIRS   = ./mkinstalldirs
46LN_S            = @LN_S@
47
48##
49## compiler and linker options
50##
51PIPE            = @PIPE@
52CFLAGS          = @CFLAGS@ ${PIPE}
53CXXFLAGS        = @CXXFLAGS@ ${PIPE}
54CXXTEMPLFLAGS   = @CXXTEMPLFLAGS@
55CPPFLAGS        = -I${srcdir} -I../kernel @CPPFLAGS@
56DEFS            = -DNDEBUG -DOM_NDEBUG -D@SING_UNAME@ @DEFS@
57LDFLAGS2        = @LDFLAGS@
58LDFLAGS         = -L../kernel -lkernel @LDFLAGS@
59LDFLAGSG        = -L../kernel -lkernel-g @LDFLAGS@
60LD_DYN_FLAGS    = @LD_DYN_FLAGS@
61SFLAGS          = @SFLAGS@
62SLDFLAGS        = @SLDFLAGS@
63
64LD_LIBC         = -lc
65STATIC_LDFLAGS  = @STATIC_LDFLAGS@
66# under cygwin, do not explicitly link against -lm, for it is the cygwin
67# lib -- if you really want to do this, use -lm as the _last_ thing on the
68# arguments to link
69ifneq ($(SINGUNAME),ix86-Win)
70LIBS            = -lm @NEED_LIBS@
71else
72LIBS            = -lsingfac -lsingcf -lntl -lgmp -static -lreadline -lncurses
73endif
74MP_LIBS         = @MP_LIBS@
75DL_KERNEL       = @DL_KERNEL@
76HAVE_MPSR       = @HAVE_MPSR@
77
78ifdef LD_STATIC
79LDFLAGS  := ${STATIC_LDFLAGS} ${LDFLAGS}
80SING_EXEC = Singular-static
81LIBS := ${MP_LIBS} ${LIBS}
82DL_KERNEL =
83else
84LDFLAGS  := ${LD_DYN_FLAGS} ${LDFLAGS}
85SING_EXEC = Singular
86endif
87
88# CXXFLAGS =  -g -Wall -Wno-unused
89# CFLAGS =  -g -Wall -Wno-unused
90##
91## End configuration dependend stuff
92#################################################################
93
94###
95### file sets
96###
97
98# normal C++ source files
99CXXSOURCES=grammar.cc scanner.cc attrib.cc \
100    eigenval_ip.cc\
101    extra.cc fehelp.cc feOpt.cc \
102    ipassign.cc ipconv.cc ipid.cc iplib.cc \
103    ipprint.cc ipshell.cc \
104    lists.cc \
105    sdb.cc \
106    fglm.cc \
107    silink.cc \
108    subexpr.cc \
109    janet.cc wrapper.cc\
110    libparse.cc sing_win.cc\
111    gms.cc pcv.cc maps_ip.cc\
112    walk.cc walk_ip.cc \
113    pShallowCopyDelete.cc cntrlc.cc misc.cc
114
115# stuff for MP
116MPSR_SOURCES = mpsr_Put.cc mpsr_PutPoly.cc mpsr_GetPoly.cc mpsr_sl.cc\
117        mpsr_Get.cc mpsr_GetMisc.cc mpsr_Error.cc \
118
119
120# stuff for dbm
121DBMSR_SOURCES =  ndbm.cc sing_dbm.cc
122
123# normal C source files
124CSOURCES=
125
126# C++ sources which are used if part of the kernel are dynamically linked
127DL_KERNEL_SOURCES=slInit_Dynamic.cc
128
129# C++ sources which are used for dynamic libraries if part of the kernel is
130# dynamically linked
131DL_LIB_SOURCES=
132
133# C++ sources which are used if no parts of the kernel are dynamically linked
134STATIC_SOURCES=slInit_Static.cc
135
136# C++ sources for which both, shared and static object files are needed
137COMMON_SOURCES = $(MPSR_SOURCES) $(DBMSR_SOURCES)
138
139# special C++ source files (need extra compiling and/or linking), for which
140# dependencies should be generated
141ESOURCES=iparith.cc $(COMMON_SOURCES) \
142        $(DL_KERNEL_SOURCES) $(DL_LIB_SOURCES) $(STATIC_SOURCES)
143
144SOURCES=${CSOURCES} ${CXXSOURCES} \
145        grammar.y scanner.l libparse.l \
146        p_Delete__T.cc p_ShallowCopyDelete__T.cc \
147        p_Copy__T.cc p_Mult_nn__T.cc  pp_Mult_nn__T.cc \
148        pp_Mult_mm__T.cc p_Mult_mm__T.cc \
149        p_Minus_mm_Mult_qq__T.cc p_Add_q__T.cc \
150        p_Neg__T.cc pp_Mult_Coeff_mm_DivSelect__T.cc \
151        pp_Mult_Coeff_mm_DivSelectMult__T.cc \
152        p_Merge_q__T.cc pp_Mult_mm_Noether__T.cc\
153        p_kBucketSetLm__T.cc \
154        kInline.cc utils.cc utils.h \
155        tesths.cc mpsr_Tok.cc claptmpl.cc
156
157HEADERS=lists.h attrib.h \
158        mpsr_Tok.h \
159        ipconv.h \
160        subexpr.h ipid.h \
161        cntrlc.h ipprint.h sdb.h \
162        ipshell.h tok.h \
163        silink.h \
164        fglm.h sing_dbm.h maps_ip.h \
165        mpsr.h mpsr_sl.h\
166        mpsr_Get.h kmatrix.h janet.h\
167        mpsr_Put.h walk.h\
168        dbm_sl.h libparse.h \
169        gms.h pcv.h eigenval_ip.h \
170        feOpt.h fegetopt.h distrib.h walk.h \
171        static.h\
172        omSingularConfig.h
173
174DISTFILES=${SOURCES} ${HEADERS} ${ESOURCES} \
175        Makefile.in configure.in configure \
176        mod2.h.in grammar.h testgh install-sh mkinstalldirs \
177        check_aso.pl
178
179OBJS := $(CXXSOURCES:.cc=.o) $(CSOURCES:.c=.o)
180
181ifeq ($(SINGUNAME),ix86-Win)
182OBJS := $(OBJS) Singular_res.o
183endif
184
185P_PROCS_MODULES = FieldZp FieldIndep FieldQ FieldGeneral
186
187ifeq ($(DL_KERNEL),1)
188OBJS    := $(OBJS) $(DL_KERNEL_SOURCES:.cc=.o)
189DBMSR_SO= dbmsr.so
190DL_LIBS := $(DBMSR_SO)
191ifeq ($(HAVE_MPSR), 1)
192MPSR_SO =       mpsr.so
193DL_LIBS :=      $(DL_LIBS) $(MPSR_SO)
194endif
195else
196ifndef LD_STATIC
197LIBS := $(MP_LIBS) $(LIBS)
198endif
199OBJS := $(OBJS) $(STATIC_SOURCES:.cc=.o) $(COMMON_SOURCES:.cc=.o)
200DL_LIBS=
201endif
202
203#
204# Singular libraries which go into distribution
205# MAKE SURE THAT THIS IS UP_TO_DATE
206#
207
208SLIB0 = COPYING \
209        ainvar.lib   alexpoly.lib  algebra.lib   all.lib       brnoeth.lib \
210        classify.lib control.lib   deform.lib    elim.lib      equising.lib \
211        finvar.lib   gmspoly.lib   gmssing.lib   general.lib   graphics.lib \
212        grwalk.lib   groups.lib    hnoether.lib  homolog.lib   inout.lib \
213        intprog.lib  latex.lib     linalg.lib    lll.lib       makedbm.lib \
214        matrix.lib   mprimdec.lib  mondromy.lib  mregular.lib  rootsmr.lib \
215        normal.lib   ntsolve.lib  \
216        poly.lib     presolve.lib  primdec.lib   primitiv.lib   qhmoduli.lib \
217        random.lib   reesclos.lib  resol.lib     resgraph.lib   ring.lib \
218        rinvar.lib   sagbi.lib     sheafcoh.lib  sing.lib \
219        solve.lib    signcond.lib  spcurve.lib   spectrum.lib   standard.lib \
220        stratify.lib surf.lib      toric.lib     triang.lib     rootsur.lib \
221        zeta.lib     zeroset.lib  help.cnf
222 
223
224PLIBS = center.lib gkdim.lib involution.lib ncall.lib ncalg.lib ncdecomp.lib nctools.lib qmatrix.lib
225
226ifdef HAVE_PLURAL
227SLIBS = ${SLIB0} ${PLIBS}
228else
229SLIBS = ${SLIB0}
230endif
231
232SLIBS_FILES = $(addprefix LIB/,${SLIBS})
233
234GFTABLES = $(wildcard LIB/gftables/[1-9]*)
235
236##
237## Build Targets
238##
239.l.cc:
240        @if test "x${LEX}" = x; then \
241                echo Error: no lex given, could not rebuilt scanner.cc;\
242                exit 1; \
243        fi
244        ${LEX} -s -I -t $< > scanner.cc.lmp
245        cp scanner.cc.lmp scanner.cc
246
247.y.cc:
248        @if test "x${BISON}" = x; then \
249                echo Error: no bison given, could not rebuilt grammar.cc;\
250                exit 1; \
251        fi
252        ${BISON} -d -t -o grammar.cc $<
253        chmod +x testgh
254        ./testgh
255
256.cc.o: 
257        ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} -c $<
258.c.o:
259        ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $<
260
261%.dl_o : %.cc
262        ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} ${SFLAGS} -c $< -o $@
263
264all:    $(SING_EXEC)
265
266Singular-static: version.h
267        sleep 1
268        echo "#define HAVE_STATIC" > static.h
269        (cd ../kernel;${MAKE} LD_STATIC=1 install-bindist;cd ..//Singular)
270        ${MAKE} LD_STATIC=1 S_EXT="-static" Singular-static
271        echo "#undef HAVE_STATIC" > static.h
272
273Singular${S_EXT}: mod2.h Makefile version.h scanner.cc  ${OBJS} \
274          iparith.o tesths.cc libparse.cc claptmpl.o mpsr_Tok.o $(DL_LIBS)
275        ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${CXXTEMPLFLAGS} ${DEFS} \
276          -o Singular${S_EXT} \
277          tesths.cc iparith.o mpsr_Tok.o claptmpl.o\
278          ${OBJS} ${LDFLAGS} ${LIBS} -lomalloc_ndebug ../kernel/mmalloc.o
279
280%.static: version.h
281        ${MAKE} DL_KERNEL=0 S_EXT=".static" $@
282
283iparith.o mpsr_Tok.o : iparith.inc mpsr_Tok.inc
284
285cntrlc.o cntrlc.og : feOptES.inc feOptTS.inc feOpt.inc
286
287claptmpl.o: claptmpl.cc mod2.h
288        ${CXX} ${CXXFLAGS}  ${CPPFLAGS} ${DEFS} -c $<   
289
290iparith.inc mpsr_Tok.inc: claptmpl.o iparith.cc \
291                          ipconv.cc tok.h mpsr_Tok.cc grammar.h mod2.h
292        ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${CXXTEMPLFLAGS} ${DEFS} -DGENTABLE \
293             -o gentable claptmpl.o iparith.cc tesths.cc mpsr_Tok.cc \
294             ${OBJS} ${LDFLAGS} ${LIBS} -lomalloc_ndebug ../kernel/mmalloc.o
295        ./gentable
296        /bin/rm -f gentable gentable.exe
297
298
299version.h: ${SOURCES} ${HEADERS} Makefile.in mod2.h.in \
300           configure.in
301        echo "#define feVersionId "  `date '+%Y%m%d%H'` >version.h
302        echo "#define CC \"" ${CC} ${CFLAGS} "\"" >>version.h
303        echo "#define CXX \"" ${CXX} ${CXXFLAGS} "\"" >>version.h
304
305libparse: libparse_main.o utils.o fegetopt.o
306        ${CXX}  ${CPPFLAGS} -DSTANDALONE_PARSER -o libparse libparse_main.o utils.o fegetopt.o ${LDFLAGS2} -lomalloc_ndebug
307
308libparse_main.o: libparse.cc
309        ${CXX} ${CPPFLAGS} -c -o libparse_main.o libparse.cc  -DSTANDALONE_PARSER
310
311libparse.cc: libparse.l
312        @if test "x${LEX}" = x; then \
313                echo Error: no lex given, could not rebuilt libparse.cc;\
314                exit 1; \
315        fi
316        ${LEX} -I -Pyylp -t libparse.l >libparse.cc.lmp
317        cp libparse.cc.lmp libparse.cc
318
319# Hmm compiling with -fomit-frame-pointer resulted in access violation
320# under cygwin
321ESingular: fegetopt.o mod2.h feOpt.cc version.h emacs.cc \
322           feOptES.inc
323        ${CXX} -O2 ${CPPFLAGS} ${DEFS} -DESINGULAR -o ESingular emacs.cc fegetopt.o \
324        ${LDFLAGS} -lomalloc_ndebug ../kernel/mmalloc.o
325
326TSingular: fegetopt.o mod2.h feOpt.cc version.h emacs.cc \
327           feOptTS.inc
328        ${CXX} -O2 ${CPPFLAGS} ${DEFS} -DTSINGULAR -o TSingular emacs.cc fegetopt.o \
329        ${LDFLAGS} -lomalloc_ndebug ../kernel/mmalloc.o
330
331feOpt.o: feOpt.inc feOptES.inc feOptTS.inc
332extra.o: feOpt.inc
333
334feOpt.inc: feOpt.cc mod2.h feOpt.h
335        $(CXX) -DGENERATE_OPTION_INDEX feOpt.cc -o feOpt
336        ./feOpt
337        /bin/rm -f feOpt feOpt.exe
338
339feOptES.inc: feOpt.cc mod2.h feOpt.h
340        $(CXX) -DGENERATE_OPTION_INDEX  -DESINGULAR feOpt.cc -o feOpt
341        ./feOpt
342        rm -f feOpt feOpt.exe
343
344feOptTS.inc: feOpt.cc mod2.h feOpt.h
345        $(CXX) -DGENERATE_OPTION_INDEX  -DTSINGULAR feOpt.cc -o feOpt
346        ./feOpt
347        rm -f feOpt feOpt.exe
348
349mpsr.so: $(MPSR_SOURCES:.cc=.dl_o)
350        $(LD) ${SLDFLAGS} -o $@ $^ -L${libdir} ${MP_LIBS}
351
352dbmsr.so: $(DBMSR_SOURCES:.cc=.dl_o)
353        $(LD) ${SLDFLAGS} -o $@ $^
354
355src: scanner.cc grammar.h grammar.cc libparse.cc
356
357mod2.h: stamp-h
358
359stamp-h : config.status mod2.h.in
360        CONFIG_FILES= CONFIG_HEADERS="mod2.h" ./config.status
361
362Makefile: Makefile.in config.status
363        CONFIG_FILES="Makefile" CONFIG_HEADERS= ./config.status
364
365config.status: configure
366        ./config.status --recheck
367
368configure: configure.in
369        @echo "WARNING: You need to rerun autoconf. I am proceeding, for now."
370        @touch configure
371#       autoconf
372
373ifeq ($(SINGUNAME),ix86-Win)
374##
375## windows only targets
376##
377
378## resources
379Singular.rc: Singular.rc.in config.status
380        CONFIG_FILES="Singular.rc" CONFIG_HEADERS= ./config.status
381
382ESingular_res.o: Singular.rc
383        windres -DESINGULAR -i Singular.rc -o ESingular_res.o
384
385TSingular_res.o: Singular.rc
386        windres -DTSINGULAR -i Singular.rc -o TSingular_res.o
387
388Singular_res.o: Singular.rc
389        windres -DSINGULAR -i Singular.rc -o Singular_res.o
390
391## run
392run.o: run.c run.h
393        gcc -c -I. -O2 run.c -o run.o
394
395runTSingular : run.o TSingular_res.o
396        gcc -mwindows -e _mainCRTStartup run.o TSingular_res.o -o runTSingular.exe
397
398runESingular : run.o ESingular_res.o
399        gcc -mwindows -e _mainCRTStartup run.o ESingular_res.o -o runESingular.exe
400
401RUN_SINGULARS=runESingular runTSingular
402
403endif
404
405##
406## install targets
407##
408install: all installbin installslib
409
410installbin: ${SING_EXEC} libparse ESingular TSingular ${RUN_SINGULARS}
411        ${MKINSTALLDIRS} ${bindir}
412        ${INSTALL_PROGRAM} ${SING_EXEC} ${SINGULAR}
413        -${INSTALL_PROGRAM} *.so ${bindir}
414        ${INSTALL_PROGRAM} libparse ${RUN_SINGULARS} ${bindir}
415        ${INSTALL_PROGRAM} ESingular TSingular ${DL_LIBS} ${bindir}
416        chmod a+x ${SINGULAR}
417        rm -f ${bindir}/${SING_EXEC}${EXEC_EXT}
418        cd ${bindir}; ${LN_S} ${SINGULAR} Singular${EXEC_EXT};
419
420installslib: LIB
421        test -r ${slibdir} || ${LN_S} `pwd`/LIB ${slibdir}
422
423
424uninstall: uninstallbin
425
426uninstallbin:
427        rm -f ${bindir}/Singular${EXEC_EXT}
428        rm -f ${SINGULAR}
429        -rmdir ${bindir}
430
431##
432## clean targest
433##
434mostlyclean:
435        -rm -f Singular Singular-static Singulara Singularg Singularp Singularb libparse feOpt*.inc
436        -rm -f *.o *.og core *.op *.ob *.ot Singulart *.od *_d.cc *_d.c  *.so*
437        -rm -f ESingular* TSingular*
438
439clean: mostlyclean
440        -rm -f *.bak *.d *.dd depend
441        -rm -f ${slibdir}
442
443distclean: clean
444        -rm -f iparith.inc mpsr_Tok.inc stamp.h
445        -rm -f Singular* *.gprof *.bprof *~ .\#* version.h
446        -rm -f mod2.h Makefile TAGS* tags config.status config.cache config.log
447
448srcclean:
449        @echo "This command is intended for maintainers to use;"
450        @echo "Rebuilding the deleted files requires flex"
451        @echo "bison, perl"
452        -rm -f scanner.cc grammar.h grammar.cc libparse.cc
453
454maintainer-clean: distclean srcclean
455        @echo "This command is intended for maintainers to use;"
456        @echo "Rebuilding the deleted files requires flex"
457        @echo "bison, perl and autoconf"
458        -rm configure
459
460##
461## miscellanous targets
462##
463
464install-bindist: $(HEADERS) $(SOURCES) Makefile depend
465        echo "#define MAKE_DISTRIBUTION " > distrib.h
466        sleep 1
467        ${MAKE} ${SING_EXEC} ESingular TSingular libparse ${RUN_SINGULARS}
468        ${MKINSTALLDIRS} ${install_bindir}
469        ${INSTALL_PROGRAM} -s  ${SING_EXEC} ${install_bindir}/Singular
470        -${INSTALL_PROGRAM} *.so ${install_bindir}
471        ${INSTALL_PROGRAM} -s  libparse ${RUN_SINGULARS} ESingular TSingular ${DL_LIBS} ${install_bindir}
472        echo "#undef MAKE_DISTRIBUTION " > distrib.h
473
474install-bindist-plural: install-bindist
475
476install-sharedist-plural: install-sharedist
477
478install-sharedist: ${SLIBS_FILES} LIB/gftables
479        ${MKINSTALLDIRS} ${install_slibdir}
480        cp ${SLIBS_FILES} ${install_slibdir}
481        ${MKINSTALLDIRS} ${install_slibdir}/gftables
482        cp ${GFTABLES} ${install_slibdir}/gftables
483        chmod -R +rX ${install_slibdir}/*
484
485tar:
486        tar cf Singular-${SINGULAR_VERSION}-src.tar ${DISTFILES}
487        gzip -f Singular-${SINGULAR_VERSION}-src.tar
488
489backup: tar
490        mcopy -o Singular-${SINGULAR_VERSION}-src.tar.gz a:
491
492TAGS:   ${SOURCES} ${ESOURCES} ${HEADERS}
493        etags ${SOURCES} ${ESOURCES} ${HEADERS}
494
495tags:   
496        ctags *.y *.[lch] *.cc *.inc ../kernel/*.[ch] ../kernel/*.cc ../kernel/*.inc
497
498echoLIBS:
499        @echo ${SLIBS}
500
501##
502## Below here is stuff for developpers
503#################################################################
504
505
506##
507## .og files for having -O and -g object versions available at the same time
508##
509
510OBJG1 := $(CXXSOURCES:.cc=.og)
511OBJG2 := $(CSOURCES:.c=.og)
512
513OBJP1 := $(CXXSOURCES:.cc=.op)
514OBJP2 := $(CSOURCES:.c=.op)
515
516OBJB1 := $(CXXSOURCES:.cc=.ob)
517OBJB2 := $(CSOURCES:.c=.ob)
518
519OBJT1 := $(CXXSOURCES:.cc=.ot)
520OBJT2 := $(CSOURCES:.c=.ot)
521
522OBJA1 := $(CXXSOURCES:.cc=.oa)
523OBJA2 := $(CSOURCES:.c=.oa)
524
525
526OBJG=$(OBJG1) $(OBJG2)
527OBJP=$(OBJP1) $(OBJP2)
528OBJB=$(OBJB1) $(OBJB2)
529OBJT=$(OBJT1) $(OBJT2)
530OBJA=$(OBJA1) $(OBJA2)
531
532DL_TAILG=\"sog\"
533DL_TAILP=\"sop\"
534DL_TAILB=\"sob\"
535DL_TAILT=\"sot\"
536DL_TAILA=\"soa\"
537
538
539ifeq ($(DL_KERNEL),1)
540
541OBJG := $(OBJG) $(DL_KERNEL_SOURCES:.cc=.og)
542DL_LIBSG := $(MPSR_SO:%.so=%.sog) $(DBMSR_SO:%.so=%.sog)
543
544OBJP := $(OBJP) $(DL_KERNEL_SOURCES:.cc=.op)
545DL_LIBSP := $(MPSR_SO:%.so=%.sop) $(DBMSR_SO:%.so=%.sop)
546
547OBJB := $(OBJB) $(DL_KERNEL_SOURCES:.cc=.ob)
548DL_LIBSB := $(MPSR_SO:%.so=%.sob) $(DBMSR_SO:%.so=%.sob)
549
550OBJT := $(OBJT) $(DL_KERNEL_SOURCES:.cc=.ot)
551DL_LIBST := $(MPSR_SO:%.so=%.sot) $(DBMSR_SO:%.so=%.sot)
552
553OBJA := $(OBJA) $(DL_KERNEL_SOURCES:.cc=.oa)
554DL_LIBSA := $(MPSR_SO:%.so=%.soa) $(DBMSR_SO:%.so=%.soa)
555
556else
557
558OBJG := $(OBJG) $(STATIC_SOURCES:.cc=.og) $(COMMON_SOURCES:.cc=.og)
559DL_LIBSG=
560
561OBJP := $(OBJP) $(STATIC_SOURCES:.cc=.op) $(COMMON_SOURCES:.cc=.op)
562DL_LIBSP=
563
564OBJB := $(OBJB) $(STATIC_SOURCES:.cc=.ob) $(COMMON_SOURCES:.cc=.ob)
565DL_LIBSB=
566
567OBJT := $(OBJT) $(STATIC_SOURCES:.cc=.ot) $(COMMON_SOURCES:.cc=.ot)
568DL_LIBST=
569
570OBJA := $(OBJA) $(STATIC_SOURCES:.cc=.oa) $(COMMON_SOURCES:.cc=.oa)
571DL_LIBST=
572
573endif
574
575
576##
577## compiler and linker options for debug version
578##
579
580CCG             = gcc
581CXXG            = @CXX@
582CXXM            = gcc -MM -MG -DGENERATE_DEPEND
583CCM             = gcc -MM -MG -DGENERATE_DEPEND
584
585CFLAGSG         = -g -Wall -Wno-unused ${PIPE}
586CXXFLAGSG       = -g -Wall -Wno-unused ${PIPE}
587CXXTEMPLFLAGSG  = -fno-implicit-templates
588DEFSG           = -D@SING_UNAME@ @DEFS@ -DDL_TAIL=$(DL_TAILG)
589
590##
591## Debug Targets
592##
593
594%.dl_og: %.cc
595        ${CXXG} ${CXXFLAGSG} ${CXXTEMPLFLAGSG} ${CPPFLAGS} ${DEFSG} ${SFLAGS} -c $< -o $@
596
597mpsr.sog: $(MPSR_SOURCES:.cc=.dl_og)
598        ${CXXG} ${CXXFLAGSG} ${SFLAGS} ${SLDFLAGS} ${LDFLAGS} -o $@ $^ ${MP_LIBS}
599
600dbmsr.sog: $(DBMSR_SOURCES:.cc=.dl_og)
601        ${CXXG} ${CXXFLAGSG} ${SFLAGS} ${SLDFLAGS} ${LDFLAGS} -o $@ $^ ${MP_LIBS}
602
603claptmpl.og: claptmpl.cc mod2.h
604        $(CXXG)  ${CXXFLAGSG} ${CPPFLAGS} ${DEFSG} -c $< -o $@
605
606%.og: %.cc
607        $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGSG} ${CPPFLAGS} ${DEFSG} -c $< -o $@
608
609$(OBJG2) : %.og: %.c
610        $(CCG)  ${CFLAGSG} ${CPPFLAGS} ${DEFSG} -c $< -o $@
611
612Singularg${S_EXT}: scanner.cc  $(OBJG)  $(DL_LIBSG)\
613           iparith.og mpsr_Tok.og claptmpl.og tesths.cc version.h
614        $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGSG} ${CPPFLAGS} ${DEFSG} -o Singularg${S_EXT} \
615        tesths.cc iparith.og mpsr_Tok.og claptmpl.og $(OBJG) ${LDFLAGSG} ${LIBS} -lomalloc ../kernel/mmalloc.og \
616        ${LD_DYN_FLAGS} ${LD_LIBC}
617
618iparith.og: iparith.inc iparith.cc
619        $(CXXG)  ${CXXFLAGSG} ${CXXTEMPLFLAGSG} ${CPPFLAGS} ${DEFSG} -c iparith.cc -o iparith.og
620
621mpsr_Tok.og: iparith.inc mpsr_Tok.cc
622        $(CXXG) ${CXXFLAGSG} ${CPPFLAGS} ${CXXTEMPLFLAGSG} ${DEFSG} -c mpsr_Tok.cc -o mpsr_Tok.og
623
624installg: Singularg
625        ${MKINSTALLDIRS} ${bindir}
626        ${INSTALL_PROGRAM} Singularg ${bindir} 
627
628ESingularg: fegetopt.og mod2.h feOpt.cc version.h emacs.cc \
629           feOptES.inc
630        ${CXXG} ${CXXFLAGSG} ${CPPFLAGS} -DESINGULAR -g ${DEFSG} -o ESingularg emacs.cc fegetopt.og ${LDFLAGS} ${LIBS} -lomalloc ../kernel/mmalloc.og
631
632##
633## compiler and linker options for profile version
634##
635
636CCP             = gcc
637CXXP            = @CXX@
638
639CFLAGSP         = -pg -O3 ${PIPE}
640CXXFLAGSP       = -pg -O3 ${PIPE}
641CXXTEMPLFLAGSP  = -fno-implicit-templates
642DEFSP           = -DNDEBUG -DOM_NDEBUG -DDO_PROFILE -D@SING_UNAME@ @DEFS@ -DDL_TAIL=$(DL_TAILP)
643LDFLAGSP        = -static @LDFLAGS@
644
645CFLAGSB         = -g -O3 ${PIPE}
646CXXFLAGSB       = -g -O3 ${PIPE}
647CXXTEMPLFLAGSB  = -fno-implicit-templates
648DEFSB           = -D@SING_UNAME@ -DOM_NDEBUG -DNDEBUG @DEFS@ -DDL_TAIL=$(DL_TAILB)
649LDFLAGSB        = -static @LDFLAGS@
650
651# bprof object  file to link with
652BPROFOBJ        = /usr/local/lib/bmon.o
653
654DEFST           = -DNO_INLINE -DNDEBUG -D@SING_UNAME@ -DOM_TRACK=2 -DOM_CHECK=0 @DEFS@ -DDL_TAIL=$(DL_TAILT)
655LDFLAGST        = @LDFLAGS@
656CFLAGST         = -g  -O2 -w ${PIPE}
657CXXFLAGST       = -g  -O2 -w ${PIPE}
658
659##
660## op and ob files for gprof and bprof, ot for mtrack, oc for OMCHECK=1
661##
662
663
664##
665## check_aso
666##
667check_aso:
668        ${PERL} check_aso.pl $(SOURCES)
669##
670## dependencies
671##
672
673%.dd: %.cc mod2.h
674        echo $(@:.dd=.og) $(@:.dd=.op) $(@:.dd=_d.cc) $(@:.dd=.od) $(@:.dd=.ob) $(@:.dd=.ot) $(@:.dd=.oa) $(@:.dd=.dl_o) $(@:.dd=.dl_og) $(@:.dd=.dl_op) $(@:.dd=.dl_od) $(@:.dd=.dl_ob) $(@:.dd=.dl_ot) $(@:.dd=.dl_oa)" " \\ > $@
675        $(CXXM) -DGENTABLE ${CPPFLAGS} ${DEFSG} $< >> $@
676
677%.d: %.c mod2.h
678        echo $(@:.d=.og) $(@:.d=.od) $(@:.dd=_d.c) $(@:.d=.op) $(@:.d=.ob) $(@:.d=.ot) $(@:.d=.oa)" " \\ > $@
679        $(CCM) ${CPPFLAGS} ${DEFSG} $< >> $@
680
681depend:   $(CXXSOURCES:.cc=.dd) $(ESOURCES:.cc=.dd) $(CSOURCES:.c=.d) mod2.h claptmpl.dd
682        -cat *.dd >>depend
683
684ifeq (depend,$(wildcard depend))
685include depend
686endif
687
688
Note: See TracBrowser for help on using the repository browser.