1#************************************************************************* 2# 3# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4# 5# Copyright 2000, 2010 Oracle and/or its affiliates. 6# 7# OpenOffice.org - a multi-platform office productivity suite 8# 9# This file is part of OpenOffice.org. 10# 11# OpenOffice.org is free software: you can redistribute it and/or modify 12# it under the terms of the GNU Lesser General Public License version 3 13# only, as published by the Free Software Foundation. 14# 15# OpenOffice.org is distributed in the hope that it will be useful, 16# but WITHOUT ANY WARRANTY; without even the implied warranty of 17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18# GNU Lesser General Public License version 3 for more details 19# (a copy is included in the LICENSE file that accompanied this code). 20# 21# You should have received a copy of the GNU Lesser General Public License 22# version 3 along with OpenOffice.org. If not, see 23# <http://www.openoffice.org/license.html> 24# for a copy of the LGPLv3 License. 25# 26#************************************************************************* 27 28PRJ=..$/.. 29PRJNAME=odk 30TARGET=copying 31 32#---------------------------------------------------------------- 33.INCLUDE: settings.mk 34.INCLUDE: $(PRJ)$/util$/makefile.pmk 35#---------------------------------------------------------------- 36 37#---------------------------------------------------- 38# this makefile is only used for copying the example 39# files into the SDK 40#---------------------------------------------------- 41 42COUNTER_FILES=\ 43 $(DESTDIRCPPEXAMPLES)$/counter$/counter.cxx \ 44 $(DESTDIRCPPEXAMPLES)$/counter$/counter.uno.xml \ 45 $(DESTDIRCPPEXAMPLES)$/counter$/countermain.cxx \ 46 $(DESTDIRCPPEXAMPLES)$/counter$/Makefile \ 47 $(DESTDIRCPPEXAMPLES)$/counter$/XCountable.idl 48 49DOUCMENTLOADER_FILES=\ 50 $(DESTDIRCPPEXAMPLES)$/DocumentLoader$/DocumentLoader.cxx \ 51 $(DESTDIRCPPEXAMPLES)$/DocumentLoader$/Makefile \ 52 $(DESTDIRCPPEXAMPLES)$/DocumentLoader$/test.odt 53 54REMOTECLIENT_FILES=\ 55 $(DESTDIRCPPEXAMPLES)$/remoteclient$/Makefile \ 56 $(DESTDIRCPPEXAMPLES)$/remoteclient$/remoteclient.cxx \ 57 $(DESTDIRCPPEXAMPLES)$/remoteclient$/remoteclientsample.uno.xml 58 59DIR_FILE_LIST= \ 60 $(COUNTER_FILES) \ 61 $(DOUCMENTLOADER_FILES) \ 62 $(REMOTECLIENT_FILES) 63 64DIR_DIRECTORY_LIST=$(uniq $(DIR_FILE_LIST:d)) 65DIR_CREATE_FLAG=$(MISC)$/ex_cpp_dirs_created.txt 66DIR_FILE_FLAG=$(MISC)$/ex_cpp_files.txt 67 68#-------------------------------------------------- 69# TARGETS 70#-------------------------------------------------- 71all : \ 72 $(DIR_FILE_LIST) \ 73 $(DIR_FILE_FLAG) 74 75#-------------------------------------------------- 76# use global rules 77#-------------------------------------------------- 78.INCLUDE: $(PRJ)$/util$/odk_rules.pmk 79 80 81