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.

12 lines
785 B

# Makefile-include
#
# Special settings for Emdebian Compile for ARM processor, John Hays, June 2012
# Rename this file to settings.mk before you compile the source for the RaspberryPi 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)

Powered by TurnKey Linux.