diff options
author | Jörg Mayer <jmayer@loplof.de> | 2007-10-10 08:09:19 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2007-10-10 08:09:19 +0000 |
commit | 24470fdfae786209924c14eeaa4956fea13ce63c (patch) | |
tree | 49ca8a3c6032707121e5f718eeeedb75968a07e3 /asn1/dsp | |
parent | 0bb472dc2dd713c9cb9ce9f43d4835f2396074dc (diff) | |
download | wireshark-24470fdfae786209924c14eeaa4956fea13ce63c.tar.gz wireshark-24470fdfae786209924c14eeaa4956fea13ce63c.tar.bz2 wireshark-24470fdfae786209924c14eeaa4956fea13ce63c.zip |
More conversions and updates to existing Makefile stuff
svn path=/trunk/; revision=23127
Diffstat (limited to 'asn1/dsp')
-rw-r--r-- | asn1/dsp/Makefile.common | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/asn1/dsp/Makefile.common b/asn1/dsp/Makefile.common index 91adc75bb5..fed975706f 100644 --- a/asn1/dsp/Makefile.common +++ b/asn1/dsp/Makefile.common @@ -45,8 +45,26 @@ SRC_FILES = \ A2W_FLAGS= -b -e -EXTRA_CNF= ../x411/x411-exp.cnf +EXTRA_CNF= + ../dap/dap-exp.cnf \ + ../x509if/x509if-exp.cnf \ + ../x509af/x509af-exp.cnf \ + ../x509sat/x509sat-exp.cnf \ + ../acse/acse-exp.cnf -../x411/x411-exp.cnf: - (cd ../x411 && $(MAKE) $(MAKEFLAGS)) + +../dap/dap-exp.cnf: + (cd ../dap && $(MAKE) $(MAKEFLAGS)) + +../x509if/x509if-exp.cnf: + (cd ../x509if && $(MAKE) $(MAKEFLAGS)) + +../x509af/x509af-exp.cnf: + (cd ../x509af && $(MAKE) $(MAKEFLAGS)) + +../x509sat/x509sat-exp.cnf: + (cd ../x509sat && $(MAKE) $(MAKEFLAGS)) + +../acse/acse-exp.cnf: + (cd ../acse && $(MAKE) $(MAKEFLAGS)) |