[Correct dependencies for JHC lib targets
coreyoconnor@gmail.com**20090622023004
 Ignore-this: 223e2af1e9c564a3e45728db4407b9d2
 Added the libs target to local-all. Previously the libs target was in an install hook which resulted
 in the libs being built as the user executing "make install"
 Modifications to the sources the JHC libs did not result in a recompile of the lib as expected. 
 Made the JHC_LIBS targets phony. This causes them to be executed regardless of the state of the
 target file. JHC appears to perform the required dependency tracking just fine.
 
] hunk ./Makefile.am 56
+.PHONY: $(JHC_LIBS)
+
hunk ./Makefile.am 72
+all-local: libs
+
hunk ./Makefile.am 220
-	./jhc -v $(RTSOPTS) $(JHC_TEST)  --ho-dir tmp/libho -ilib/containers  --noauto -L- -L. -p base -p applicative --build-hl lib/containers.cabal -fcpp -o $@
+	./jhc -v $(RTSOPTS) $(JHC_TEST)  -Ilib/containers/include --ho-dir tmp/libho -ilib/containers  --noauto -L- -L. -p base -p applicative --build-hl lib/containers.cabal -fcpp -o $@
hunk ./Makefile.am 264
+.PHONY: libs