mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Use separate configs for X86 / ARM (pi 2)
This commit is contained in:
parent
1aa04f75b6
commit
8f1ad554d9
2 changed files with 23 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
|
||||
# install configuration
|
||||
|
||||
CFLAGS ?= -g -march=armv6k
|
||||
CFLAGS ?= -g
|
||||
CC ?= cc
|
||||
AR ?= ar
|
||||
#CD ?= cd
|
||||
|
|
22
Makefile.config.raspberry-pi-2
Normal file
22
Makefile.config.raspberry-pi-2
Normal file
|
@ -0,0 +1,22 @@
|
|||
|
||||
# install configuration
|
||||
|
||||
CFLAGS ?= -g -march=armv6k
|
||||
CC ?= cc
|
||||
AR ?= ar
|
||||
#CD ?= cd
|
||||
RM ?= rm -f
|
||||
#LS ?= ls
|
||||
#CP ?= cp
|
||||
#LN ?= ln
|
||||
INSTALL ?= install
|
||||
MKDIR ?= $(INSTALL) -d
|
||||
RMDIR ?= rmdir
|
||||
|
||||
PREFIX ?= /usr/local
|
||||
BINDIR ?= $(PREFIX)/bin
|
||||
LIBDIR ?= $(PREFIX)/lib
|
||||
INCDIR ?= $(PREFIX)/include/cyclone
|
||||
DATADIR ?= $(PREFIX)/share/cyclone
|
||||
|
||||
DESTDIR ?=
|
Loading…
Add table
Reference in a new issue