aboutsummaryrefslogtreecommitdiff
path: root/src/test/locale/Makefile
blob: 33eaa02c540dcb064cc7f1a232d96a8457ba3894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# $Header: /cvsroot/pgsql/src/test/locale/Makefile,v 1.5 2000/08/31 16:12:25 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)

$(PROGS): % : %.c 
	$(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS)

clean: 
	rm -f $(PROGS) *.out
	for d in $(DIRS); do \
		$(MAKE) -C $$d clean
	done

test-%: all
	@cd `echo $@ | sed 's/^test-//'` && $(MAKE) test