Skip to content
Snippets Groups Projects
Forked from Glasgow Haskell Compiler / GHC
62635 commits behind the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Makefile.config 546 B
# partain: probably not the right thing yet

all: configure

configure: configure.in
	rm -f configure.new
	autoconf configure.in > configure.new \
		|| ( rm -f configure.new; exit 1 )
	rm -f configure
	mv configure.new configure
	chmod +x configure
	chmod -w configure
	rm -f configure.new

CONFIG_H_IN = ghc/includes/config.h.in

config.h.in: configure.in
	rm -f $(CONFIG_H_IN)
	autoheader configure.in > $(CONFIG_H_IN) \
		|| ( rm -f $(CONFIG_H_IN); exit 1 )

# do something about autoheader
# do something about ghc-vs-nofib configure scripts