Changeset 323
- Timestamp:
- 01/03/06 12:39:09
- Files:
-
- openpgpsdk/trunk/Makefile (modified) (2 diffs)
- openpgpsdk/trunk/configure (modified) (5 diffs)
- openpgpsdk/trunk/examples (modified) (1 prop)
- openpgpsdk/trunk/examples/Makefile.template (modified) (1 diff)
- openpgpsdk/trunk/src (modified) (1 prop)
- openpgpsdk/trunk/src/Makefile.template (modified) (1 diff)
- openpgpsdk/trunk/test/pgp1.eml (added)
- openpgpsdk/trunk/test/pgp2.eml (added)
- openpgpsdk/trunk/util/oink_cc.pl (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openpgpsdk/trunk/Makefile
r315 r323 25 25 (cd $$d; echo "+++ make clean in $$d"; make clean; echo "--- $$d"); \ 26 26 done 27 find . -name '*.core' | xargs rm 27 28 28 29 Makefiles: … … 44 45 cov-build --dir coverity make 45 46 cd coverity && cov-analyze -e emit/ --outputdir output/ --enable VOLATILE --security --enable CHROOT --enable OPEN_ARGS --enable SECURE_CODING --enable SECURE_TEMP --enable TAINTED_POINTER --enable TOCTTOU && cov-commit-errors -e ./emit -o ./output -d /home/rachel/openpgpsdk/coverity/database/ --name ben 47 48 oink: 49 rm -rf oink-links 50 mkdir oink-links 51 cd oink-links \ 52 && find ../src ../examples -name '*.[ihc]' -exec ln -s {} \; \ 53 && ln -s ../util/Makefile.oink Makefile openpgpsdk/trunk/configure
r304 r323 13 13 our $Log; 14 14 our $LogFile='/dev/null'; 15 16 my $use_oink; 15 17 16 18 sub trace { … … 61 63 my $cc=shift; 62 64 $Subst{CC}=$cc; 63 } 65 }, 66 '--oink=' => sub { 67 $Subst{OINK}=shift; 68 }, 64 69 ); 65 70 … … 99 104 100 105 $Subst{'CC'}=getKnowledge('cc'); 106 101 107 $Subst{'CFLAGS'}.=' '.getKnowledge('base_cflags'); 102 108 … … 109 115 #exit; 110 116 117 if($Subst{OINK}) { 118 use Cwd; 119 my $path=getcwd(); 120 $Subst{CC}="$path/util/oink_cc.pl --cc=$Subst{CC}"; 121 } 122 111 123 fixSubst(); 124 125 my $path=`pwd`; 126 chomp $path; 127 112 128 113 129 create('src/.depend'); … … 116 132 fileSubst('src/Makefile','#',''); 117 133 fileSubst('examples/Makefile','#',''); 134 fileSubst('util/Makefile.oink','#',''); 118 135 fileSubst('include/openpgpsdk/configure.h','/*','*/'); 119 136 openpgpsdk/trunk/examples
- Property svn:ignore changed from create-key create-signed-key verify packet-dump .depend Makefile sign-inline verify2 sign-detached dmalloc.log to create-key create-signed-key verify packet-dump .depend Makefile sign-inline verify2 sign-detached dmalloc.log *.i
openpgpsdk/trunk/examples/Makefile.template
r317 r323 43 43 44 44 clean: 45 rm -f $(EXES) *.o 45 rm -f $(EXES) *.o *.i 46 46 rm -f TAGS 47 47 openpgpsdk/trunk/src
- Property svn:ignore changed from packet-dump .depend verify libops.a Makefile to packet-dump .depend verify libops.a Makefile *.i
openpgpsdk/trunk/src/Makefile.template
r300 r323 24 24 25 25 clean: 26 rm -f packet-dump verify *.o 26 rm -f packet-dump verify *.o *.i 27 27 rm -f libops.a TAGS 28 28
