aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2005-04-08 04:43:06 +0000
committerLev Walkin <vlm@lionet.info>2005-04-08 04:43:06 +0000
commitf686beb1468b9c46a044a6272454365de5cb46bb (patch)
tree8f4456fc8684025f3dacb82a3d3b92dc88aa9eb7
parented8173be6d78d70957a2d1c9b9d988a6e0e2767a (diff)
ASN_DECODER_TEMPLATE is used explicitly
-rw-r--r--examples/sample.source.PKIX1/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/sample.source.PKIX1/Makefile b/examples/sample.source.PKIX1/Makefile
index 9a046468..c625ed8c 100644
--- a/examples/sample.source.PKIX1/Makefile
+++ b/examples/sample.source.PKIX1/Makefile
@@ -363,8 +363,9 @@ Attribute.c: regenerate.Makefile
@touch Attribute.c
make
-$(TARGET).o: ../../skeletons/asn-decoder-template.c
- $(CC) $(CFLAGS) -o $(TARGET).o -c $<
+ASN_DECODER_TEMPLATE=../../skeletons/asn-decoder-template.c
+$(TARGET).o: $(ASN_DECODER_TEMPLATE)
+ $(CC) $(CFLAGS) -o $(TARGET).o -c $(ASN_DECODER_TEMPLATE)
distclean: clean
rm -f $(ASN_MODULE_SOURCES) $(ASN_MODULE_HEADERS)