Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 1 | LEVEL = . |
Chris Lattner | 091bbba | 2003-10-05 19:28:27 +0000 | [diff] [blame] | 2 | DIRS = lib/Support utils lib tools runtime |
John Criswell | 8bff509 | 2003-06-11 13:55:44 +0000 | [diff] [blame] | 3 | OPTIONAL_DIRS = projects |
Chris Lattner | 0095054 | 2001-06-06 20:29:01 +0000 | [diff] [blame] | 4 | |
| 5 | include $(LEVEL)/Makefile.common |
| 6 | |
| 7 | test :: all |
| 8 | cd test; $(MAKE) |
John Criswell | d741bcf | 2003-08-12 18:51:51 +0000 | [diff] [blame] | 9 | |
| 10 | distclean:: 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 Gaeke | 7528343 | 2003-10-07 17:12:11 +0000 | [diff] [blame] | 17 | AUTOCONF = autoconf |
Brian Gaeke | e9b5090 | 2003-10-07 23:44:10 +0000 | [diff] [blame] | 18 | AUTOHEADER = autoheader |
Brian Gaeke | 7528343 | 2003-10-07 17:12:11 +0000 | [diff] [blame] | 19 | |
Brian Gaeke | e9b5090 | 2003-10-07 23:44:10 +0000 | [diff] [blame] | 20 | configure: autoconf/configure.ac autoconf/aclocal.m4 |
Brian Gaeke | 7528343 | 2003-10-07 17:12:11 +0000 | [diff] [blame] | 21 | cd autoconf && $(AUTOCONF) -o ../configure configure.ac |
| 22 | |
Brian Gaeke | e9b5090 | 2003-10-07 23:44:10 +0000 | [diff] [blame] | 23 | include/Config/config.h.in: autoconf/configure.ac autoconf/aclocal.m4 |
Brian Gaeke | b68e334 | 2003-10-08 21:38:35 +0000 | [diff] [blame] | 24 | $(AUTOHEADER) -I autoconf autoconf/configure.ac |
Brian Gaeke | e9b5090 | 2003-10-07 23:44:10 +0000 | [diff] [blame] | 25 | |