5b0945b570
Includes build infrastructure & config updates required for changes in 8.16.1 MFC after: 5 days
20 lines
346 B
Makefile
20 lines
346 B
Makefile
# $Id: Makefile,v 8.2 1999-09-23 22:36:29 ca Exp $
|
|
|
|
SHELL= /bin/sh
|
|
BUILD= ./Build
|
|
OPTIONS= $(CONFIG) $(FLAGS)
|
|
|
|
all: FRC
|
|
$(SHELL) $(BUILD) $(OPTIONS) $@
|
|
clean: FRC
|
|
$(SHELL) $(BUILD) $(OPTIONS) $@
|
|
check: FRC
|
|
$(SHELL) $(BUILD) $(OPTIONS) $@
|
|
install: FRC
|
|
$(SHELL) $(BUILD) $(OPTIONS) $@
|
|
|
|
fresh: FRC
|
|
$(SHELL) $(BUILD) $(OPTIONS) -c
|
|
|
|
FRC:
|