#! /bin/sh # # Clement.BARRY@enst-bretagne.fr -- Feb. 1998 SHELL = /bin/sh MAKE = make CP = @CP@ VERSION = 2.9 INSTALL = @INSTALL@ INSTALL_PROGRAM = $(INSTALL) -c -s -m 755 INSTALL_DATA = $(INSTALL) -c -m 644 INSTALL_DIR = $(INSTALL) -c -d -c -m 755 prefix = @prefix@ exec_prefix = $(prefix)/bin bindir = $(prefix)/bin datadir = $(prefix)/share all: cd src ; $(MAKE) all clean: $(RM) -f core cd src ; $(MAKE) clean install: install-bin install-data install-bin: src/nest src/nestserver $(INSTALL_DIR) $(bindir) $(INSTALL_PROGRAM) src/nest $(bindir)/nest $(INSTALL_PROGRAM) src/nestserver $(bindir)/nestserver $(INSTALL_DIR) $(datadir)/nest $(INSTALL_DATA) COPYING $(datadir)/nest/COPYING $(INSTALL_DATA) netconfig $(datadir)/nest/netconfig install-data: rules genetic $(INSTALL_DIR) $(datadir)/nest/rules $(CP) -r rules/* $(datadir)/nest/rules $(INSTALL_DIR) $(datadir)/nest/genetic $(CP) -r genetic/* $(datadir)/nest/genetic uninstall: $(bindir)/nest $(bindir)/nestserver $(datadir)/nest $(RM) -f $(bindir)/nest $(bindir)/nestserver $(RM) -rf $(datadir)/nest depend: cd src ; $(MAKE) depend distclean: clean $(RM) -f config.cache config.log config.status Makefile src/Makefile