omf-expctl
[omf.git] / Makefile
index 0c3bbe0..fbe5622 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -25,10 +25,31 @@ imagezip-URL                := http://pkg.mytestbed.net/yum/base/8/i386/imagezip-1.0.0-3.i386.
 imagezip-SHA1SUM       := b96297e480dfbc2360bcb62ff4ee130794124849
 imagezip               := $(notdir $(imagezip-URL))
 
+ALL += omf-expctl
+omf-expctl-URL         := http://pkg.mytestbed.net/yum/base/8/i386/omf-expctl-5.3-1ubuntu2-2.noarch.rpm
+omf-expctl-SHA1SUM     := cb3fbc3e211c4cec48a55473ec3f1ba11caf487b
+omf-expctl             := $(notdir $(omf-expctl-URL))
+
 all: $(ALL)
 .PHONY: all
 
 ##############################
+#define download_target
+#$(1): $($(1))
+#.PHONY: $($(1))
+#$($(1)): 
+#      @if [ ! -e "$($(1))" ] ; then echo "$(WEBFETCH) $($(1)-URL)" ; $(WEBFETCH) $($(1)-URL) ; fi
+#      @if [ ! -e "$($(1))" ] ; then echo "Could not download source file: $($(1)) does not exist" ; exit 1 ; fi
+#      @if test "$$$$($(SHA1SUM) $($(1)) | awk '{print $$$$1}')" != "$($(1)-SHA1SUM)" ; then \
+#          echo "sha1sum of the downloaded $($(1)) does not match the one from 'Makefile'" ; \
+#          echo "Local copy: $$$$($(SHA1SUM) $($(1)))" ; \
+#          echo "In Makefile: $($(1)-SHA1SUM)" ; \
+#          false ; \
+#      else \
+#          ls -l $($(1)) ; \
+#      fi
+#endef
+
 define download_target
 $(1): $($(1))
 .PHONY: $($(1))
@@ -39,7 +60,8 @@ $($(1)):
            echo "sha1sum of the downloaded $($(1)) does not match the one from 'Makefile'" ; \
            echo "Local copy: $$$$($(SHA1SUM) $($(1)))" ; \
            echo "In Makefile: $($(1)-SHA1SUM)" ; \
-           false ; \
+           echo "Proceeding anyway .. " ; \
+           ls -l $($(1)) ; \
        else \
            ls -l $($(1)) ; \
        fi
@@ -51,6 +73,8 @@ $(eval $(call download_target,liblog4r))
 $(eval $(call download_target,libxmpp4r))
 $(eval $(call download_target,imagezip))
 
+$(eval $(call download_target,omf-expctl))
+
 #################### convenience, for debugging only
 # make +foo : prints the value of $(foo)
 # make ++foo : idem but verbose, i.e. foo=$(foo)