summaryrefslogtreecommitdiffstats
path: root/perl-install/c/Makefile
blob: f67b1f9ac6a72d86f97e2af258fc8b67b0cd3f2c (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 LD_RUN_PATH=
	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 $@