Changeset 541
- Timestamp:
- 02/10/08 11:31:27
- Files:
-
- openpgpsdk/trunk/CUnit-2.1-0-src.tar.gz (moved) (moved from openpgpsdk/trunk/tests/CUnit-2.1-0-src.tar.gz)
- openpgpsdk/trunk/Makefile (modified) (2 diffs)
- openpgpsdk/trunk/configure (modified) (1 diff)
- openpgpsdk/trunk/tests/Makefile.template (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/Makefile
r497 r541 28 28 rm -rf oink-links 29 29 -rm lib/* 30 # reinstall the CUnit libs 31 (cd CUnit-2.1-0; make install) 30 32 31 33 Makefiles: … … 44 46 cd doc && make 45 47 48 cunit: 49 if [ ! -d CUnit-2.1-0 ]; then \ 50 tar xvfz CUnit-2.1-0-src.tar.gz; \ 51 (cd CUnit-2.1-0 && ./configure --prefix $(PWD) && make && make install); \ 52 fi 53 54 46 55 coverity:: 47 56 cov-build --dir coverity make openpgpsdk/trunk/configure
r449 r541 142 142 fileSubst('include/openpgpsdk/configure.h','/*','*/'); 143 143 144 print "make cunit\n"; 145 system('make cunit') == 0 || exit; 144 146 print "make clean\n"; 145 147 system('make clean') == 0 || exit; openpgpsdk/trunk/tests/Makefile.template
r532 r541 21 21 TESTOBJ= $(TESTSRC:.c=.o) 22 22 23 all: Makefile $(CUNIT_LIB).depend tests23 all: Makefile .depend tests 24 24 25 25 tests: $(CUNIT_LIB) $(TESTOBJ) $(COMMONTESTOBJ) $(LIBDEPS) 26 26 $(CC) $(LDFLAGS) -o tests $(TESTOBJ) $(COMMONTESTOBJ) $(LIBS) 27 28 $(CUNIT_LIB):29 tar xvfz CUnit-2.1-0-src.tar.gz30 (cd CUnit-2.1-0 && ./configure --prefix $(PWD)/../ && make && make install)31 27 32 28 clean:
