1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
# **********************************************************************
#
# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved.
#
# This copy of Ice is licensed to you under the terms described in the
# ICE_LICENSE file included in this distribution.
#
# **********************************************************************
top_srcdir = ../../..
CREATE = create
READ = read
READNEW = readnew
RECREATE = recreate
TARGETS = $(CREATE) $(READ) $(READNEW) $(RECREATE)
CREATE_OBJS = ContactData.o Contacts.o create.o
READ_OBJS = ContactData.o Contacts.o read.o
READNEW_OBJS = NewContactData.o NewContacts.o readnew.o
RECREATE_OBJS = NewContactData.o NewContacts.o recreate.o
OBJS = $(CREATE_OBJS) $(READ_OBJS) $(READNEW_OBJS) $(RECREATE_OBJS)
SRCS = $(OBJS:.o=.cpp)
SLICE_SRCS = ContactData.ice NewContactData.ice
include $(top_srcdir)/config/Make.rules
CPPFLAGS := -I. $(CPPFLAGS)
$(CREATE): $(CREATE_OBJS)
rm -f $@
$(CXX) $(LDFLAGS) -o $@ $(CREATE_OBJS) $(DB_RPATH_LINK) -lFreeze $(LIBS)
$(READ): $(READ_OBJS)
rm -f $@
$(CXX) $(LDFLAGS) -o $@ $(READ_OBJS) $(DB_RPATH_LINK) -lFreeze $(LIBS)
$(READNEW): $(READNEW_OBJS)
rm -f $@
$(CXX) $(LDFLAGS) -o $@ $(READNEW_OBJS) $(DB_RPATH_LINK) -lFreeze $(LIBS)
$(RECREATE): $(RECREATE_OBJS)
rm -f $@
$(CXX) $(LDFLAGS) -o $@ $(RECREATE_OBJS) $(DB_RPATH_LINK) -lFreeze $(LIBS)
Contacts.h Contacts.cpp: ContactData.ice $(SLICE2FREEZE) $(SLICEPARSERLIB)
rm -f Contacts.h Contacts.cpp
$(SLICE2FREEZE) -I$(slicedir) --dict Demo::Contacts,string,Demo::ContactData,sort \
--dict-index Demo::Contacts,phoneNumber,sort Contacts ContactData.ice
NewContacts.h NewContacts.cpp: NewContactData.ice $(SLICE2FREEZE) $(SLICEPARSERLIB)
rm -f NewContacts.h NewContacts.cpp
$(SLICE2FREEZE) -I$(slicedir) --dict Demo::NewContacts,string,Demo::ContactData,sort \
--dict-index Demo::NewContacts,phoneNumber,sort NewContacts NewContactData.ice
cleandb::
-rm -f db/* dbnew/*
clean::
-rm -f db/* dbnew/*
-rm -f Contacts.h Contacts.cpp NewContacts.h NewContacts.cpp
include .depend
|