###############################################################################
# Makefile for XML sample C files
###############################################################################

.SUFFIXES: .c .o

CC     =cc
PROGS  =Query

INCLUDE=-I../include
LIB    =-L../lib -lcore8 -lnls8 -lcore8 -lnls8 -lcore8 -lpthread -lstdc++

# Change it to the appropriate separator based on the OS.
PATHSEP = :

# make all class files
all: $(PROGS)

Query: Query.cc

	$(CC) -o Query $(INCLUDE) $< $(LIB)


clean:
	rm -f $(PROGS) *.o

# end of Makefile
