1 ## -*- makefile -*- -------------------------------------------------------
3 ## Copyright 2008 H. Peter Anvin - All Rights Reserved
5 ## This program is free software; you can redistribute it and/or modify
6 ## it under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
8 ## Boston MA 02110-1301, USA; either version 2 of the License, or
9 ## (at your option) any later version; incorporated herein by reference.
11 ## -----------------------------------------------------------------------
14 ## Common configurables
25 AUXDIR = $(DATADIR)/syslinux
31 EXTLINUXDIR = $(BOOTDIR)/extlinux
39 TMPFILE := $(shell mktemp /tmp/gcc_ok.XXXXXX)
40 gcc_ok = $(shell tmpf=$(TMPFILE); \
41 if $(CC) $(1) -c $(topdir)/dummy.c -o $$tmpf 2>/dev/null ; \
42 then echo '$(1)'; else echo '$(2)'; fi; \