source: trunk/nom/make.inc@ 174

Last change on this file since 174 was 135, checked in by cinc, 19 years ago

Added garbage collection. To use it the GC init function must be called before using any GLib (or GTK) stuff.

File size: 1.3 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-2006"
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
Note: See TracBrowser for help on using the repository browser.