2000-04-30 22:52:26 +04:00
|
|
|
# Usage:
|
|
|
|
# make makefiles [CC=compiler] [OPT=compiler-flags] [DEBUG=debug-flags]
|
|
|
|
#
|
|
|
|
# The defaults are: CC=gcc, OPT=-O, and DEBUG=-g. Examples:
|
|
|
|
#
|
|
|
|
# make makefiles
|
|
|
|
# make makefiles CC="purify cc"
|
|
|
|
# make makefiles CC=cc OPT=
|
|
|
|
#
|
|
|
|
SHELL = /bin/sh
|
|
|
|
|
|
|
|
default: update
|
|
|
|
|
|
|
|
update depend printfck clean tidy depend_update: Makefiles
|
2001-03-13 20:45:02 +03:00
|
|
|
$(MAKE) MAKELEVEL= $@
|
2000-04-30 22:52:26 +04:00
|
|
|
|
|
|
|
makefiles Makefiles:
|
2001-03-13 20:45:02 +03:00
|
|
|
$(MAKE) -f Makefile.in MAKELEVEL= Makefiles
|