File: template.mak

package info (click to toggle)
wxxt 1.66d-2
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 9,160 kB
  • ctags: 12,697
  • sloc: cpp: 88,972; ansic: 4,435; sh: 1,771; makefile: 579; lex: 186; yacc: 105
file content (35 lines) | stat: -rw-r--r-- 1,166 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#the calling Makefile MUST set OS and RULE
#RULE can be one of the following:
# bin      for                             one local  binary 
# bin2     for                             two local  binaries
# gbin     for                             one global binary
# gbin2    for                             two global binaries
# lib      for a local         library
# libbin   for a local         library and one local  binary
# libgbin  for a local         library and one global binary
# glib     for a global        library
# glibbin  for a global        library and one local  binary
# glibgbin for a global        library and one global binary
# gslib    for a global shared library

# no need to edit below this line !!!!

RULES_DIR=$(WXBASEDIR)/setup/rules
RULES_GENERIC=$(RULES_DIR)/generic
SETUP_DIR=$(WXBASEDIR)/setup/$(OS)
SHARE_DIR=$(WXBASEDIR)/setup/shared

SRCDIR=$(WXBASEDIR)/src
UTILS=$(WXBASEDIR)/utils
SAMPLES=$(WXBASEDIR)/samples
OTHER=$(WXBASEDIR)/other

# now include the global setting
include $(SETUP_DIR)/maketmpl

# now include the rule needed
include $(RULES_DIR)/$(RULE)

# now include the global objects
include $(RULES_GENERIC)/globals