RPA Git Repository
/
rpatk.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added support for ARM architecture.
[rpatk.git]
/
build
/
unix
/
config.mk
1
RTK_LIB_INSTALL=/usr/lib
2
RPATK_INC_INSTALL=/usr/include/rpatk
3
ARCHDIR = $(shell basename $(shell pwd))
4
OS = $(shell uname | tr "[:upper:]" "[:lower:]")
5
6
ifndef CC
7
CC = gcc
8
endif
9
10
ifndef LD
11
LD = ld
12
endif
13
14
ifndef AR
15
AR = ar
16
endif
17
18
ifndef CPP
19
CPP = g++
20
endif
21
22
ifndef OBJCOPY
23
OBJCOPY = objcopy
24
endif