root/branches/licq/licq/Makefile.in

Revision 17, 0.6 kB (checked in by dwalker, 9 years ago)

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1SUBDIRS = share src
2
3.PHONY: all_recursive install_recursive clean_recursive distclean_recursive \
4    all clean distclean install
5
6all_recursive install_recursive clean_recursive distclean_recursive:
7    @for subdir in $(SUBDIRS); do \
8      target=`echo $@ | sed s/_recursive//`; \
9      echo "Making $$target in $$subdir"; \
10      (cd $$subdir && $(MAKE) $$target); \
11    done
12
13all: all_recursive
14
15clean: clean_recursive
16
17distclean: distclean_recursive
18    $(RM) config.cache config.log config.status Makefile config.h \
19        confdefs.h *~
20
21install: install_recursive
22    @cat post-install
Note: See TracBrowser for help on using the browser.