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

MAKEIT = $(MAKE) -f Makefile_c LD_RUN_PATH=

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

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

stuff.xs: %: %.pl
	rm -f $@
	perl $< > $@
	chmod a-w $@