# ============================================================================
# Copyright (c) 2004-2012 PolarDB Corporation. All Rights Reserved.
# ===========================================================================

# Makefile to build C testcases for OCILib
#

CC=gcc
CFLAGS=-Wall -g -lpolardboci

SAMPLES = polardb_demo

all: $(SAMPLES)

%:%.o
	$(CC) $(CFLAGS) -o $@
clean:
	rm -rf $(SAMPLES)

	
