1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-05 09:19:17 +03:00

Repair circular dependencies and broken clean commands.

This commit is contained in:
Peter Eisentraut 2001-01-19 19:15:33 +00:00
parent d62d4c3300
commit e8990eba31

View File

@ -1,4 +1,4 @@
# $Header: /cvsroot/pgsql/src/test/locale/Makefile,v 1.6 2000/10/20 21:04:24 petere Exp $ # $Header: /cvsroot/pgsql/src/test/locale/Makefile,v 1.7 2001/01/19 19:15:33 petere Exp $
subdir = src/test/locale subdir = src/test/locale
top_builddir = ../../.. top_builddir = ../../..
@ -6,15 +6,15 @@ include $(top_builddir)/src/Makefile.global
PROGS = test-pgsql-locale test-ctype PROGS = test-pgsql-locale test-ctype
DIRS = koi8-r ISO8859-7 koi8-to-win1251 DIRS = de_DE.ISO8859-1 gr_GR.ISO8859-7 koi8-r koi8-to-win1251
all: $(PROGS) all: $(PROGS)
clean: clean:
rm -f $(PROGS) *.out rm -f $(PROGS)
for d in $(DIRS); do \ for d in $(DIRS); do \
$(MAKE) -C $$d clean $(MAKE) -C $$d clean; \
done done
test-%: all check-%: all
@cd `echo $@ | sed 's/^test-//'` && $(MAKE) test @$(MAKE) -C `echo $@ | sed 's/^check-//'` test