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

# Makefile to build C testcases for OCILib
#

CC=gcc
CFLAGS=-Wall -g -I$(ORACLE_HOME)/rdbms/public -L../../../dbserver/lib -L../lib -ledboci

SAMPLES = edb_demo

all: $(SAMPLES)

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

	
