CFLAGS = -I/usr/lib/glib/include/ -Wall -g
LIBS = -lORBit -lIIOP -lORBitutil
COBJS = account-common.o account-stubs.o
IOBJS = account-impl.o account-skels.o $(COBJS)
CLOBJS = account-client.o $(COBJS)

all: account-impl account-client

account-client: $(CLOBJS)
	cc -o account-client $(CLOBJS) $(LIBS)

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