Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / test / thread / Makefile
blob0add91bdbac5a5bd224475bbb36377c4532b79c4
1 #-------------------------------------------------------------------------
3 # Makefile for tools/thread
5 # Copyright (c) 2003-2009, PostgreSQL Global Development Group
7 # $PostgreSQL$
9 #-------------------------------------------------------------------------
11 subdir = src/tools/thread
12 top_builddir = ../../..
13 include $(top_builddir)/src/Makefile.global
15 override CFLAGS += $(PTHREAD_CFLAGS)
17 all: thread_test
19 thread_test: thread_test.o
20 # no need for $LIBS, might not be compiled yet
21 $(CC) $(CFLAGS) $(LDFLAGS) $^ $(PTHREAD_LIBS) -o $@
23 clean distclean maintainer-clean:
24 rm -f thread_test$(X) thread_test.o