root/juggler/branches/2.2/vc7/Tweek_CXX_IDL/Makefile

Revision 19729, 2.5 kB (checked in by patrick, 2 years ago)

Copyright update.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 # ************** <auto-copyright.pl BEGIN do not edit this line> **************
2 #
3 # VR Juggler is (C) Copyright 1998-2007 by Iowa State University
4 #
5 # Original Authors:
6 #   Allen Bierbaum, Christopher Just,
7 #   Patrick Hartling, Kevin Meinert,
8 #   Carolina Cruz-Neira, Albert Baker
9 #
10 # This library is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Library General Public
12 # License as published by the Free Software Foundation; either
13 # version 2 of the License, or (at your option) any later version.
14 #
15 # This library 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 GNU
18 # Library General Public License for more details.
19 #
20 # You should have received a copy of the GNU Library General Public
21 # License along with this library; if not, write to the
22 # Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 # Boston, MA 02111-1307, USA.
24 #
25 # *************** <auto-copyright.pl END do not edit this line> ***************
26
27 IDL=            $(OMNIORB_BIN)\omniidl
28 IDL_OPTS=       -bcxx -Wbh=.h,s=.cpp -C$(IDL_OUT_DIR)
29 IDL_INCLUDES=   -I../../modules/tweek
30 IDL_OUT_DIR=    ..\Tweek_CXX\tweek\idl
31 IDL_SRC_DIR=    ..\..\modules\tweek\tweek\idl
32
33 $(IDL_OUT_DIR):
34         mkdir $(IDL_OUT_DIR)
35
36 $(IDL_OUT_DIR)\Observer.cpp $(IDL_OUT_DIR)\Observer.h:  \
37    $(IDL_SRC_DIR)\Observer.idl
38         $(IDL) $(IDL_OPTS) $(IDL_INCLUDES) $(IDL_SRC_DIR)\Observer.idl
39
40 $(IDL_OUT_DIR)\Subject.cpp $(IDL_OUT_DIR)\Subject.h:    \
41    $(IDL_SRC_DIR)\Subject.idl $(IDL_SRC_DIR)\Observer.idl
42         $(IDL) $(IDL_OPTS) $(IDL_INCLUDES) $(IDL_SRC_DIR)\Subject.idl
43
44 $(IDL_OUT_DIR)\SubjectManager.cpp $(IDL_OUT_DIR)\SubjectManager.h:      \
45    $(IDL_SRC_DIR)\SubjectManager.idl $(IDL_SRC_DIR)\Subject.idl
46         $(IDL) $(IDL_OPTS) $(IDL_INCLUDES) $(IDL_SRC_DIR)\SubjectManager.idl
47
48 $(IDL_OUT_DIR)\BeanDeliverySubject.cpp $(IDL_OUT_DIR)\BeanDeliverySubject.h: \
49    $(IDL_SRC_DIR)\BeanDeliverySubject.idl $(IDL_SRC_DIR)\Subject.idl
50         $(IDL) $(IDL_OPTS) $(IDL_INCLUDES)              \
51            $(IDL_SRC_DIR)\BeanDeliverySubject.idl
52
53 BASE_OUTPUT=    \
54                 $(IDL_OUT_DIR)\Observer.cpp             \
55                 $(IDL_OUT_DIR)\Observer.h               \
56                 $(IDL_OUT_DIR)\Subject.cpp              \
57                 $(IDL_OUT_DIR)\Subject.h                \
58                 $(IDL_OUT_DIR)\SubjectManager.cpp       \
59                 $(IDL_OUT_DIR)\SubjectManager.h
60
61 SUBJECT_OUTPUT= \
62                 $(IDL_OUT_DIR)\BeanDeliverySubject.cpp          \
63                 $(IDL_OUT_DIR)\BeanDeliverySubject.h
64
65 OUTPUT=         $(BASE_OUTPUT)          \
66                 $(SUBJECT_OUTPUT)
67
68 all: $(IDL_OUT_DIR) $(OUTPUT)
69
70 clean:
71         -rmdir /S /Q $(IDL_OUT_DIR)
Note: See TracBrowser for help on using the browser.