# Makefile settings common for architecture unix # # $Id$ prefix=/usr ifndef $(arch) arch=$(shell gcc -dumpmachine) endif CC=$(arch)-gcc CXX=$(arch)-g++ ARCHLIBSUBDIR=lib/$(arch) ifeq ("$(wildcard $(prefix)/bin/$(arch)-pkg-config)","") PKGCONFIG=pkg-config else PKGCONFIG=$(arch)-pkg-config endif WINDRES= include $(srcdir)/include-unix.mk