blob: 6ecf6cdb90d5f7364776b3aef12a78926ae0b88c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $Header: /cvsroot/pgsql/src/test/locale/Makefile,v 1.6 2000/10/20 21:04:24 petere Exp $
subdir = src/test/locale
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global
PROGS = test-pgsql-locale test-ctype
DIRS = koi8-r ISO8859-7 koi8-to-win1251
all: $(PROGS)
clean:
rm -f $(PROGS) *.out
for d in $(DIRS); do \
$(MAKE) -C $$d clean
done
test-%: all
@cd `echo $@ | sed 's/^test-//'` && $(MAKE) test
|