CFLAGS = -I/usr/lib/glib/include/ -Wall -g
LIBS = -lORBit -lIIOP -lORBitutil
OBJS = account-impl.o account-skels.o account-common.o account-stubs.o

all: account-impl

account-impl: $(OBJS)
	cc -o account-impl $(OBJS) $(LIBS)
