summaryrefslogtreecommitdiffstats
path: root/perl-install/c/Makefile
blob: 14308d97c27ad7f6ec8e752ae1761757a0fcf4e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: clean

C_RPM = 1

stuff: %: %.xs
	test -e Makefile_c || C_RPM=$(C_RPM) perl Makefile.PL
	$(MAKE) -f Makefile_c
	rm -f ../auto/c ; ln -s ../c/blib/arch/auto ../auto/c

clean:
	test ! -e Makefile_c || $(MAKE) -f Makefile_c clean
	rm -f *~ stuff.xs

stuff.xs: %: %.pm
	rm -f $@
	export C_RPM=$(C_RPM) ; perl $< > $@
	chmod a-w $@