# $Header: /home/amb/CVS/cxref/Makefile.in,v 1.3 2005-02-01 18:45:07 amb Exp $ # # C Cross Referencing & Documentation tool. Version 1.6a. # # Top level Makefile. # # Written by Andrew M. Bishop # # This file Copyright 1995,96,97,98,99,2000,01,02,03,04,05 Andrew M. Bishop # It may be distributed under the GNU Public License, version 2, or # any higher version. See section COPYING of the GNU Public license # for conditions under which this file may be redistributed. # # autoconf things srcdir=@srcdir@ VPATH=@srcdir@ ######## programs : cd cpp && $(MAKE) programs cd src && $(MAKE) programs cd query && $(MAKE) programs docs : programs cd doc && $(MAKE) docs all : programs docs ######## install : programs cd src && $(MAKE) install cd cpp && $(MAKE) install cd query && $(MAKE) install cd doc && $(MAKE) install install-win32 : programs cd src && $(MAKE) install-win32 cd cpp && $(MAKE) install-win32 cd query && $(MAKE) install-win32 ######## clean : cd src && $(MAKE) clean cd cpp && $(MAKE) clean cd query && $(MAKE) clean cd doc && $(MAKE) clean #### distclean : clean -rm -f Makefile config.log config.status config.cache cd src && $(MAKE) distclean cd cpp && $(MAKE) distclean cd query && $(MAKE) distclean cd doc && $(MAKE) distclean ########