blob: f3a4ffcc770b9902977bac9d62ca504b1225a45a [file] [log] [blame]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001LEVEL = .
Chris Lattner20c9b8c2003-10-05 19:28:27 +00002DIRS = lib/Support utils lib tools runtime
John Criswell0607d882003-06-11 13:55:44 +00003OPTIONAL_DIRS = projects
Chris Lattner2f7c9632001-06-06 20:29:01 +00004
5include $(LEVEL)/Makefile.common
6
7test :: all
8 cd test; $(MAKE)
John Criswell48ecca62003-08-12 18:51:51 +00009
10distclean:: clean
11 $(VERB) $(RM) -rf $(LEVEL)/Makefile.config \
12 $(LEVEL)/include/Config/config.h \
13 $(LEVEL)/autoconf/autom4te.cache \
14 $(LEVEL)/config.log \
15 $(LEVEL)/TAGS
16
Brian Gaekece6ade12003-10-07 17:12:11 +000017AUTOCONF = autoconf
Brian Gaeke11e25a72003-10-07 23:44:10 +000018AUTOHEADER = autoheader
Brian Gaekece6ade12003-10-07 17:12:11 +000019
Brian Gaeke11e25a72003-10-07 23:44:10 +000020configure: autoconf/configure.ac autoconf/aclocal.m4
Brian Gaekece6ade12003-10-07 17:12:11 +000021 cd autoconf && $(AUTOCONF) -o ../configure configure.ac
22
Brian Gaeke11e25a72003-10-07 23:44:10 +000023include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4
24 autoheader -I autoconf autoconf/configure.ac
25