Use separate configs for X86 / ARM (pi 2)

This commit is contained in:
Justin Ethier 2015-12-29 23:14:09 -05:00
parent 1aa04f75b6
commit 8f1ad554d9
2 changed files with 23 additions and 1 deletions

View file

@ -1,7 +1,7 @@
# install configuration
CFLAGS ?= -g -march=armv6k
CFLAGS ?= -g
CC ?= cc
AR ?= ar
#CD ?= cd

View 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 ?=