Changeset 9ec090 in git


Ignore:
Timestamp:
Mar 26, 2001, 11:08:22 AM (22 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
a99a04feb5bc30bcce0e65d65fa35a18ece380df
Parents:
b4d18fc2e56fdf030931cc30e123c9ef40d17c46
Message:
* hannes: LLL


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

Legend:

Unmodified
Added
Removed
  • IntegerProgramming/Makefile.in

    rb4d18fc r9ec090  
    4343OBJECTS4:= $(MAIN4).o
    4444
     45LLL   := LLL
     46OBJECTS_LLL:= LLL_lattice_to_send.o
     47
    4548%.o: %.cc
    4649        $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@
    4750
    48 all: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4)
     51all: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4) $(LLL)
    4952
    50 install: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4)
     53install: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4) $(LLL)
    5154        ${MKINSTALLDIRS} ${bindir}
    5255        ${INSTALL_PROGRAM} $(MAIN1) ${bindir}
     
    5457        ${INSTALL_PROGRAM} $(MAIN3) ${bindir}
    5558        ${INSTALL_PROGRAM} $(MAIN4) ${bindir}
     59        ${INSTALL_PROGRAM} $(LLL) ${bindir}
    5660
    5761install-bindist: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4)
     
    6165        ${INSTALL_PROGRAM} -s $(MAIN3) ${install_bindir}
    6266        ${INSTALL_PROGRAM} -s $(MAIN4) ${install_bindir}
     67        ${INSTALL_PROGRAM} -s $(LLL) ${bindir}
    6368
    6469clean:
     
    7176        -rm -f ${bindir}/$(MAIN3)
    7277        -rm -f ${bindir}/$(MAIN4)
     78        -rm -f ${bindir}/$(LLL)
    7379
    7480$(MAIN1): term_ordering.o binomial.o list.o BigInt.o LLL.o matrix.o \
     
    100106        strip $(MAIN4)
    101107
     108$(LLL): $(OBJECTS_LLL)
     109        $(CXX)  $^ -o $@ $(LDFLAGS)
     110        strip $(LLL)
     111
    102112Makefile: Makefile.in
    103113        cd ..;  CONFIG_FILES="IntegerProgramming/Makefile" CONFIG_HEADERS= ./config.status
Note: See TracChangeset for help on using the changeset viewer.