# # Makefile for installing bomgen PHP script # ifndef PREFIX PREFIX=/usr endif SCRIPT = bomgen.php INC_DIR = Bomgen INC_FILES = \ functions.inc.php \ refdes.inc.php \ conf.inc.php \ digikey.inc.php \ mapping.inc.php \ pcad.inc.php \ altium.inc.php SYSCONFDIR=/etc # Top-level rule, do nothing all: $(SCRIPT) install: install -D -m 755 $(SCRIPT) $(PREFIX)/bin install -d -m 755 $(PREFIX)/share/php/$(INC_DIR) for f in $(INC_FILES); do \ install -D -m 644 $(INC_DIR)/$${f} $(PREFIX)/share/php/$(INC_DIR); \ done # Do nothing clean: