1#
2# This Makefile can be used to update the config.alpha.h and
3# config.ga.h files *in UNIX* (in VOS the configure_perl.cm
4# is used).  Update the config.*.def files appropriately when
5# you add new symbols to Configure.  If you don't know VOS,
6# most of the time a safe guess for a symbol is 'undef'.
7#
8
9all:	config.alpha.h config.ga.h
10
11config.alpha.h:	config.alpha.def ../config_h.SH mv-if-diff
12	cp config.alpha.def config.def
13	perl config.pl
14	sh mv-if-diff config.h.new config.alpha.h
15	rm -f config.def config.h.new
16
17config.ga.h:	config.ga.def ../config_h.SH mv-if-diff
18	cp config.ga.def config.def
19	perl config.pl
20	sh mv-if-diff config.h.new config.ga.h
21	rm -f config.def config.h.new
22