#
# Makefile for "spiceutil" miscellaneous utilities for manipulating
# spice decks and related files.
#

PROGS=spdepend spicestrip spicelibsplit spicecontline fetpara simnodes casecheck mt0parse spicenodes mt2asc stddev makemixer mt2table

OLDPROGS=modtrack

BIN=/usr/nctools/bin

all:
	@echo "This makefile can only be used with GNU Make (gmake)"
	@echo "Makefile targets include: install"

install: $(addprefix $(BIN)/, $(PROGS))

$(BIN)/%: %
	rm -f $@
	cp $^ $@
	chmod 555 $@
	chgrp nc $@

