Changeset 9ec090 in git
- Timestamp:
- Mar 26, 2001, 11:08:22 AM (22 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- a99a04feb5bc30bcce0e65d65fa35a18ece380df
- Parents:
- b4d18fc2e56fdf030931cc30e123c9ef40d17c46
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
IntegerProgramming/Makefile.in
rb4d18fc r9ec090 43 43 OBJECTS4:= $(MAIN4).o 44 44 45 LLL := LLL 46 OBJECTS_LLL:= LLL_lattice_to_send.o 47 45 48 %.o: %.cc 46 49 $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< -o $@ 47 50 48 all: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4) 51 all: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4) $(LLL) 49 52 50 install: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4) 53 install: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4) $(LLL) 51 54 ${MKINSTALLDIRS} ${bindir} 52 55 ${INSTALL_PROGRAM} $(MAIN1) ${bindir} … … 54 57 ${INSTALL_PROGRAM} $(MAIN3) ${bindir} 55 58 ${INSTALL_PROGRAM} $(MAIN4) ${bindir} 59 ${INSTALL_PROGRAM} $(LLL) ${bindir} 56 60 57 61 install-bindist: $(MAIN1) $(MAIN2) $(MAIN3) $(MAIN4) … … 61 65 ${INSTALL_PROGRAM} -s $(MAIN3) ${install_bindir} 62 66 ${INSTALL_PROGRAM} -s $(MAIN4) ${install_bindir} 67 ${INSTALL_PROGRAM} -s $(LLL) ${bindir} 63 68 64 69 clean: … … 71 76 -rm -f ${bindir}/$(MAIN3) 72 77 -rm -f ${bindir}/$(MAIN4) 78 -rm -f ${bindir}/$(LLL) 73 79 74 80 $(MAIN1): term_ordering.o binomial.o list.o BigInt.o LLL.o matrix.o \ … … 100 106 strip $(MAIN4) 101 107 108 $(LLL): $(OBJECTS_LLL) 109 $(CXX) $^ -o $@ $(LDFLAGS) 110 strip $(LLL) 111 102 112 Makefile: Makefile.in 103 113 cd ..; CONFIG_FILES="IntegerProgramming/Makefile" CONFIG_HEADERS= ./config.status
Note: See TracChangeset
for help on using the changeset viewer.