X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=Makefile.in;h=b433ab1e733e109f6f6f59b6506e48eb4565b0bc;hb=362faf2743696638129198519a445178b06de424;hp=7d6162f40c1d2fc431ada15ef8fadc9b8c464eeb;hpb=67d5378544bf945ba657b40d84b73cc952d1451a;p=libfirm diff --git a/Makefile.in b/Makefile.in index 7d6162f40..b433ab1e7 100644 --- a/Makefile.in +++ b/Makefile.in @@ -34,9 +34,11 @@ XOFILES += $(addsuffix /subdir.o, $(subdirs)) include $(top_srcdir)/MakeTargets - +# add target firmjni if configured with --enable-firmjni all: config.h Makefile libfirm.a +firm: config.h Makefile libfirm.a + libfirm.a: subdir_all $(XOFILES) $(OFILES) $(AR) $(ARFLAGS) $@.new $(XOFILES) $(OFILES) $(RANLIB) $@.new @@ -44,8 +46,9 @@ libfirm.a: subdir_all $(XOFILES) $(OFILES) testprograms: libfirm.a $(MAKE) -C testprograms -# $(MAKE) -C firmjni test Tut nicht in craks Makefile +firmjni:: libfirm.a + $(MAKE) -C firmjni # gernerate program documentation .PHONY: autodoc @@ -75,8 +78,11 @@ stamp-h: config.h.in config.status config.status: configure ./config.status --recheck +# add target test-firmjni if configured with --enable-firmjni test:: $(MAKE) -C testprograms test; + +test-firmjni:: $(MAKE) -C firmjni test; test-reference:: @@ -84,3 +90,4 @@ test-reference:: test-clean: $(MAKE) -C testprograms realclean + $(MAKE) -C firmjni/testprograms clean;