source: trunk/nom/make.inc@ 242

Last change on this file since 242 was 239, checked in by cinc, 19 years ago

Synching before applying WC2007 patches

File size: 1.5 KB
Line 
1#
2# Includes for desktop makefiles
3#
4
5CC = gcc
6
7GCCFLAGSDLL = -Zmtd -Zdll -D__OS2__ -D__ST_MT_ERRNO__ -c -Wall
8GCCLDFLAGSDLL = -Zmt -Zdll
9
10GCCFLAGS = -Zmt -Zcrtdll -D__OS2__ -D__ST_MT_ERRNO__ -c -Wall
11#GCCFLAGS = -E -P
12
13GCCLDFLAGS = -Zmt -Zcrtdll -Zdll
14
15LIBS = -lgtk-x11-2.0 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0
16
17
18VERSION = 0_0_1
19VERSION_STRING = 0.0.1
20AUTHOR_STRING = "(C) Chris Wohlgemuth 2003-2007"
21
22# Put version in environment for REXX skripts
23export DESKTOPVERSION = $(VERSION_STRING)
24export AUTHORSTRING = $(AUTHOR_STRING)
25
26
27FIXLINKAGEH = cmd.exe /C ".\..\tools\fix_linkage.cmd" $(CLASSINC)/$(basename $(notdir $<)).h
28FIXLINKAGEIH = cmd.exe /C ".\..\tools\fix_linkage.cmd" $(CLASSINC)/$(basename $(notdir $<)).ih
29# The som compiler doesn't touch the c implementation file if there're no changes to be written.
30# Interestingly H files are always newly written.
31# So to make the makefile working we have to touch the c file whenever the som compiler is run.
32TOUCHFILE = touch $(CLASSCDIR)/$(basename $(notdir $<)).c
33
34export SOMINC = -I z:\include
35
36IDLCOMP = L:\svn-sources\nom\trunk\ORBit2-2.14.0\src\idl-compiler\.libs\orbit-idl-2.exe
37#IDLCOMP = L:/ORBit2-2.14.0/src/idl-compiler/.libs/orbit-idl-2.exe
38
39GCPATH = L:/svn-sources/nom/trunk/gc6.8
40NOMPATH = L:/svn-sources/nom/trunk/nom
41GUITKPATH = L:/svn-sources/desktop/trunk/gui
42FOUNDATIONPATH = L:/svn-sources/desktop/trunk/foundation
43DESKTOPPATH = L:/svn-sources/desktop/trunk/desktop
Note: See TracBrowser for help on using the repository browser.