mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-03-13 00:14:26 +02:00
20 lines
297 B
Makefile
20 lines
297 B
Makefile
.PHONY: all
|
|
all: join-tests
|
|
./join-tests
|
|
|
|
join-tests: main build-script test.data.pl
|
|
./main test.data.pl > $@.n
|
|
mv $@.n $@
|
|
chmod 755 $@
|
|
|
|
.PHONY: distclean
|
|
distclean:
|
|
rm -f t*.out core
|
|
|
|
.PHONY: clean
|
|
clean: distclean
|
|
|
|
.PHONY: realclean
|
|
realclean: clean
|
|
rm -f join-tests t*.[12] t*.exp t*.log
|