#!/bin/make -f # file: scripts/Makefile # ==================================================================== # environment definitions; # -------------------------------------------------------------------- include ../make.def # ==================================================================== # # -------------------------------------------------------------------- TRASH=t t.* *~ *.[0-9][0-9][0-9] FILES=*.c *.h *.mak Makefile Makefile.* TOOLS= PAGES=fdm.1 # ==================================================================== # # -------------------------------------------------------------------- all compile: install: scripts: manuals: install -m ${MAN_PERM} -o ${OWNER} -g ${GROUP} ${PAGES} ${MAN} library: uninstall: clean: rm -f ${TOOLS} ${TRASH} check: # ${SHELL} scripts.sh ignore: echo ${TOOLS} | tr ' ' '\n' > .gitignore # ==================================================================== # # --------------------------------------------------------------------