You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
836 B
13 lines
836 B
# Makefile-include
|
|
#
|
|
# Special settings for Emdebian Compile for ARM processor, John Hays, June 2012
|
|
# modified by Hans-J. Barthen, DL5DI, 2012-09-07
|
|
# Rename this file to settings.mk before you compile the source for the Debian armel platform
|
|
#
|
|
export DATADIR := "/usr/local/etc"
|
|
export BINDIR := "$(DESTDIR)/usr/local/bin"
|
|
export CC := arm-linux-gnueabi-g++
|
|
export LDFLAGS := -g -L/usr/arm-linux-gnueabi/lib
|
|
export CFLAGS := -g -O2 -Wall -Wno-non-virtual-dtor -Wno-strict-aliasing -Wno-psabi -DDATA_DIR='$(DATADIR)' -DBIN_DIR='$(BINDIR)' -I/usr/arm-linux-gnueabi/include -I/usr/arm-linux-gnueabi/lib/wx/include/gtk2-unicode-release-2.8 -I/usr/arm-linux-gnueabi/include/wx-2.8 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -D__WXGTK__ -pthread
|
|
export LIBS := -lportaudio -lusb-1.0 $(shell wx-config --libs adv,core)
|