xref: /aoo42x/main/odk/examples/basic/makefile.mk (revision cdf0e10c)
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
42DRAWING_FILES=\
43	$(DESTDIRBASICEXAMPLES)$/drawing$/dirtree.txt \
44	$(DESTDIRBASICEXAMPLES)$/drawing$/importexportofasciifiles.odg
45
46FORMSANDCONTROLS_FILES=\
47	$(DESTDIRBASICEXAMPLES)$/forms_and_controls$/beef.wmf \
48	$(DESTDIRBASICEXAMPLES)$/forms_and_controls$/burger.wmf \
49	$(DESTDIRBASICEXAMPLES)$/forms_and_controls$/burger_factory.odt \
50	$(DESTDIRBASICEXAMPLES)$/forms_and_controls$/chicken.wmf \
51	$(DESTDIRBASICEXAMPLES)$/forms_and_controls$/fish.wmf \
52	$(DESTDIRBASICEXAMPLES)$/forms_and_controls$/vegetable.wmf
53
54SHEET_FILES=\
55	$(DESTDIRBASICEXAMPLES)$/sheet$/adapting_to_euroland.ods
56
57STOCKQUOTEUPDATER_FILES=\
58	$(DESTDIRBASICEXAMPLES)$/stock_quotes_updater$/stock.ods
59
60TEXT_FILES=\
61	$(DESTDIRBASICEXAMPLES)$/text$/creating_an_index$/index.odt \
62	$(DESTDIRBASICEXAMPLES)$/text$/creating_an_index$/indexlist.txt \
63	$(DESTDIRBASICEXAMPLES)$/text$/modifying_text_automatically$/changing_appearance.odt \
64	$(DESTDIRBASICEXAMPLES)$/text$/modifying_text_automatically$/inserting_bookmarks.odt \
65	$(DESTDIRBASICEXAMPLES)$/text$/modifying_text_automatically$/replacing_text.odt \
66	$(DESTDIRBASICEXAMPLES)$/text$/modifying_text_automatically$/using_regular_expressions.odt
67
68DIR_FILE_LIST= \
69	$(DRAWING_FILES) \
70	$(FORMSANDCONTROLS_FILES) \
71	$(SHEET_FILES) \
72	$(STOCKQUOTEUPDATER_FILES) \
73	$(TEXT_FILES) \
74
75DIR_DIRECTORY_LIST=$(uniq $(DIR_FILE_LIST:d))
76DIR_CREATE_FLAG=$(MISC)$/ex_basic_dirs_created.txt
77DIR_FILE_FLAG=$(MISC)$/ex_basic_files.txt
78
79#--------------------------------------------------
80# TARGETS
81#--------------------------------------------------
82all : \
83	$(DIR_FILE_LIST) \
84	$(DIR_FILE_FLAG)
85
86#--------------------------------------------------
87# use global rules
88#--------------------------------------------------
89.INCLUDE: $(PRJ)$/util$/odk_rules.pmk
90
91
92