Changeset 5f27266 in git


Ignore:
Timestamp:
Oct 5, 2005, 11:41:18 AM (19 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
e24823f3896d3cb299f2d05094a88abf6a9a4df1
Parents:
da6d304dee93a85fe3e57e847a1f34aacf8c35c8
Message:
Makefile.in:

Anpassungen für vollst. Compilieren unter Cygwin, protected from different Systems


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

Legend:

Unmodified
Added
Removed
  • Singular/Makefile.in

    rda6d304 r5f27266  
    7272SFLAGS          = @SFLAGS@
    7373SLDFLAGS        = @SLDFLAGS@
     74
     75## For PYSingular
     76ifneq ($(SINGUNAME),ix86-Win)
     77WIN_LIBS        =
     78else
     79WIN_LIBS        = ../modules/python_module.bin
     80endif
    7481
    7582LD_LIBC         = -lc
     
    133140
    134141# normal C source files
    135 CSOURCES= 
     142CSOURCES=
    136143
    137144# C++ sources which are used if part of the kernel are dynamically linked
     
    143150
    144151# C++ sources which are used if no parts of the kernel are dynamically linked
    145 STATIC_SOURCES=slInit_Static.cc 
     152STATIC_SOURCES=slInit_Static.cc
    146153
    147154# C++ sources for which both, shared and static object files are needed
     
    283290
    284291Singular${S_EXT}: mod2.h Makefile version.h scanner.cc  ${OBJS} \
    285           iparith.o tesths.cc libparse.cc claptmpl.o mpsr_Tok.o $(DL_LIBS)
     292          iparith.o tesths.cc libparse.cc claptmpl.o mpsr_Tok.o $(DL_LIBS) $(WIN_LIBS)
    286293        ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${CXXTEMPLFLAGS} ${DEFS} \
    287294          -o Singular${S_EXT} \
     
    289296          ${OBJS} ${LDFLAGS} ${LIBS} -lomalloc_ndebug ../kernel/mmalloc.o
    290297
     298../modules/python_module.bin:
     299        cd ../modules/python; scons
     300
    291301%.static: version.h
    292302        ${MAKE} DL_KERNEL=0 S_EXT=".static" $@
     
    297307
    298308claptmpl.o: claptmpl.cc mod2.h
    299         ${CXX} ${CXXFLAGS}  ${CPPFLAGS} ${DEFS} -c $<   
     309        ${CXX} ${CXXFLAGS}  ${CPPFLAGS} ${DEFS} -c $<
    300310
    301311iparith.inc mpsr_Tok.inc: claptmpl.o iparith.cc \
     
    364374        $(LD) ${SLDFLAGS} -o $@ $^
    365375
    366 src: scanner.cc grammar.h grammar.cc libparse.cc 
     376src: scanner.cc grammar.h grammar.cc libparse.cc
    367377
    368378mod2.h: stamp-h
Note: See TracChangeset for help on using the changeset viewer.