source: git/Singular/Makefile.in @ 81a6f2

spielwiese
Last change on this file since 81a6f2 was 81a6f2, checked in by Hans Schönemann <hannes@…>, 19 years ago
*hannes: fixed depend target git-svn-id: file:///usr/local/Singular/svn/trunk@7797 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 18.4 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 -lgdbm -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    p_polys.cc \
108    silink.cc \
109    subexpr.cc \
110    janet.cc wrapper.cc\
111    libparse.cc sing_win.cc\
112    gms.cc pcv.cc maps_ip.cc\
113    tgb.cc\
114    pShallowCopyDelete.cc fast_maps.cc cntrlc.cc misc.cc
115
116# stuff for MP
117MPSR_SOURCES = mpsr_Put.cc mpsr_PutPoly.cc mpsr_GetPoly.cc mpsr_sl.cc\
118        mpsr_Get.cc mpsr_GetMisc.cc mpsr_Error.cc \
119
120
121# stuff for dbm
122DBMSR_SOURCES =  ndbm.cc sing_dbm.cc
123
124# normal C source files
125CSOURCES=
126
127# C++ sources which are used if part of the kernel are dynamically linked
128DL_KERNEL_SOURCES=slInit_Dynamic.cc
129
130# C++ sources which are used for dynamic libraries if part of the kernel is
131# dynamically linked
132DL_LIB_SOURCES=
133
134# C++ sources which are used if no parts of the kernel are dynamically linked
135STATIC_SOURCES=slInit_Static.cc
136
137# C++ sources for which both, shared and static object files are needed
138COMMON_SOURCES = $(MPSR_SOURCES) $(DBMSR_SOURCES)
139
140# special C++ source files (need extra compiling and/or linking), for which
141# dependencies should be generated
142ESOURCES=mmalloc.cc iparith.cc $(COMMON_SOURCES) \
143        $(DL_KERNEL_SOURCES) $(DL_LIB_SOURCES) $(STATIC_SOURCES)
144
145SOURCES=${CSOURCES} ${CXXSOURCES} \
146        grammar.y scanner.l libparse.l prCopyTemplate.cc \
147        p_Delete__T.cc p_ShallowCopyDelete__T.cc \
148        p_Copy__T.cc p_Mult_nn__T.cc  pp_Mult_nn__T.cc \
149        pp_Mult_mm__T.cc p_Mult_mm__T.cc \
150        p_Minus_mm_Mult_qq__T.cc p_Add_q__T.cc \
151        p_Neg__T.cc pp_Mult_Coeff_mm_DivSelect__T.cc \
152        pp_Mult_Coeff_mm_DivSelectMult__T.cc \
153        p_Merge_q__T.cc pp_Mult_mm_Noether__T.cc\
154        p_kBucketSetLm__T.cc \
155        kInline.cc utils.cc utils.h \
156        tesths.cc mpsr_Tok.cc claptmpl.cc
157
158HEADERS=lists.h attrib.h \
159        mpsr_Tok.h \
160        ipconv.h \
161        subexpr.h ipid.h \
162        cntrlc.h ipprint.h sdb.h \
163        ipshell.h tok.h \
164        fast_maps.h \
165        silink.h \
166        fglm.h sing_dbm.h \
167        mpsr.h mpsr_sl.h\
168        mpsr_Get.h kmatrix.h janet.h\
169        mpsr_Put.h\
170        dbm_sl.h libparse.h \
171        gms.h pcv.h eigenval_ip.h \
172        feOpt.h fegetopt.h distrib.h walk.h \
173        static.h\
174        omSingularConfig.h
175
176DISTFILES=${SOURCES} ${HEADERS} ${ESOURCES} \
177        Makefile.in configure.in configure \
178        mod2.h.in grammar.h testgh install-sh mkinstalldirs \
179        check_aso.pl prCopy.pl
180
181OBJS := $(CXXSOURCES:.cc=.o) $(CSOURCES:.c=.o)
182
183ifeq ($(SINGUNAME),ix86-Win)
184OBJS := $(OBJS) Singular_res.o
185endif
186
187P_PROCS_MODULES = FieldZp FieldIndep FieldQ FieldGeneral
188
189ifeq ($(DL_KERNEL),1)
190OBJS    := $(OBJS) $(DL_KERNEL_SOURCES:.cc=.o)
191DBMSR_SO= dbmsr.so
192DL_LIBS := $(DBMSR_SO)
193ifeq ($(HAVE_MPSR), 1)
194MPSR_SO =       mpsr.so
195DL_LIBS :=      $(DL_LIBS) $(MPSR_SO)
196endif
197else
198ifndef LD_STATIC
199LIBS := $(MP_LIBS) $(LIBS)
200endif
201OBJS := $(OBJS) $(STATIC_SOURCES:.cc=.o) $(COMMON_SOURCES:.cc=.o)
202DL_LIBS=
203endif
204
205#
206# Singular libraries which go into distribution
207# MAKE SURE THAT THIS IS UP_TO_DATE
208#
209
210SLIB0 = COPYING \
211        ainvar.lib   alexpoly.lib  algebra.lib   all.lib       brnoeth.lib \
212        classify.lib control.lib \
213        deform.lib   elim.lib      equising.lib  finvar.lib    gmspoly.lib \
214        gmssing.lib \
215        general.lib  graphics.lib  groups.lib    hnoether.lib  homolog.lib  \
216        inout.lib \
217        intprog.lib  latex.lib     linalg.lib    makedbm.lib    matrix.lib \
218        mprimdec.lib \
219        mondromy.lib mregular.lib  normal.lib    ntsolve.lib    paramet.lib \
220        poly.lib     presolve.lib  primdec.lib   primitiv.lib   qhmoduli.lib \
221        random.lib   reesclos.lib  ring.lib      rinvar.lib     sing.lib \
222        solve.lib    spcurve.lib   spectrum.lib  standard.lib   stratify.lib \
223        surf.lib     toric.lib     triang.lib    zeroset.lib    help.cnf
224 
225
226PLIBS = center.lib gkdim.lib involution.lib ncall.lib ncalg.lib ncdecomp.lib nctools.lib qmatrix.lib
227
228ifdef HAVE_PLURAL
229SLIBS = ${SLIB0} ${PLIBS}
230else
231SLIBS = ${SLIB0}
232endif
233
234SLIBS_FILES = $(addprefix LIB/,${SLIBS})
235
236GFTABLES = $(wildcard LIB/gftables/[1-9]*)
237
238##
239## Build Targets
240##
241.l.cc:
242        @if test "x${LEX}" = x; then \
243                echo Error: no lex given, could not rebuilt scanner.cc;\
244                exit 1; \
245        fi
246        ${LEX} -s -I -t $< > scanner.cc.lmp
247        cp scanner.cc.lmp scanner.cc
248
249.y.cc:
250        @if test "x${BISON}" = x; then \
251                echo Error: no bison given, could not rebuilt grammar.cc;\
252                exit 1; \
253        fi
254        ${BISON} -d -t -o grammar.cc $<
255        chmod +x testgh
256        ./testgh
257
258.cc.o: 
259        ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} -c $<
260.c.o:
261        ${CC} ${CFLAGS} ${CPPFLAGS} ${DEFS} -c $<
262
263%.dl_o : %.cc
264        ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} ${SFLAGS} -c $< -o $@
265
266all:    $(SING_EXEC)
267
268Singular-static: version.h
269        sleep 1
270        echo "#define HAVE_STATIC" > static.h
271        (cd ../kernel;${MAKE} LD_STATIC=1 install-bindist;cd ..//Singular)
272        ${MAKE} LD_STATIC=1 S_EXT="-static" Singular-static
273        echo "#undef HAVE_STATIC" > static.h
274
275Singular${S_EXT}: mod2.h Makefile version.h scanner.cc  ${OBJS} mmalloc.o \
276          iparith.o tesths.cc libparse.cc claptmpl.o mpsr_Tok.o $(DL_LIBS)
277        ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${CXXTEMPLFLAGS} ${DEFS} \
278          -o Singular${S_EXT} \
279          tesths.cc iparith.o mpsr_Tok.o claptmpl.o\
280          ${OBJS} ${LDFLAGS} ${LIBS} -lomalloc_ndebug mmalloc.o
281
282%.static: version.h
283        ${MAKE} DL_KERNEL=0 S_EXT=".static" $@
284
285iparith.o mpsr_Tok.o : iparith.inc mpsr_Tok.inc
286
287cntrlc.o cntrlc.og : feOptES.inc feOptTS.inc feOpt.inc
288
289claptmpl.o: claptmpl.cc mod2.h
290        ${CXX} ${CXXFLAGS}  ${CPPFLAGS} ${DEFS} -c $<   
291
292iparith.inc mpsr_Tok.inc: claptmpl.o iparith.cc mmalloc.o\
293                          ipconv.cc tok.h mpsr_Tok.cc grammar.h mod2.h
294        ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${CXXTEMPLFLAGS} ${DEFS} -DGENTABLE \
295             -o gentable claptmpl.o iparith.cc tesths.cc mpsr_Tok.cc \
296             ${OBJS} ${LDFLAGS} ${LIBS} -lomalloc_ndebug mmalloc.o
297        ./gentable
298        /bin/rm -f gentable gentable.exe
299
300
301version.h: ${SOURCES} ${HEADERS} Makefile.in mod2.h.in \
302           configure.in
303        echo "#define feVersionId "  `date '+%Y%m%d%H'` >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 mmalloc.o
323        ${CXX} -O2 ${CPPFLAGS} ${DEFS} -DESINGULAR -o ESingular emacs.cc fegetopt.o \
324        ${LDFLAGS} -lomalloc_ndebug mmalloc.o
325
326TSingular: fegetopt.o mod2.h feOpt.cc version.h emacs.cc \
327           feOptTS.inc mmalloc.o
328        ${CXX} -O2 ${CPPFLAGS} ${DEFS} -DTSINGULAR -o TSingular emacs.cc fegetopt.o \
329        ${LDFLAGS} -lomalloc_ndebug 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)  mmalloc.og $(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 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 mmalloc.og
630        ${CXXG} ${CXXFLAGSG} ${CPPFLAGS} -DESINGULAR -g ${DEFSG} -o ESingularg emacs.cc fegetopt.og ${LDFLAGS} ${LIBS} -lomalloc 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 *.d >depend
683        -cat *.dd >>depend
684
685ifeq (depend,$(wildcard depend))
686include depend
687endif
688
689
Note: See TracBrowser for help on using the repository browser.