DirectHW fixes for coreboot utilities
[coreboot.git] / util / inteltool / Makefile
index 9b76d216f0a68fc445dfdbe77547aef7886f0671..db7fca0b23a07c6d2aec531bd21d77b08e5060a5 100644 (file)
@@ -1,9 +1,9 @@
 #
 # Makefile for inteltool utility
 #
-# Copyright (C) 2008 by coresystems GmbH 
-# written by Stefan Reinauer <stepan@coresystems.de> 
-# 
+# Copyright (C) 2008 by coresystems GmbH
+# written by Stefan Reinauer <stepan@coresystems.de>
+#
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # the Free Software Foundation; either version 2 of the License, or
@@ -25,10 +25,20 @@ CC      = gcc
 INSTALL = /usr/bin/install
 PREFIX  = /usr/local
 CFLAGS  = -O2 -g -Wall -W
-LDFLAGS = -lpci -lz 
+LDFLAGS = -lpci -lz
 
 OBJS = inteltool.o cpu.o gpio.o rootcmplx.o powermgt.o memory.o pcie.o
 
+OS_ARCH        = $(shell uname)
+ifeq ($(OS_ARCH), Darwin)
+LDFLAGS = -framework DirectHW -lpci -lz
+endif
+ifeq ($(OS_ARCH), FreeBSD)
+CFLAGS += -I/usr/local/include
+LDFLAGS += -L/usr/local/lib
+LIBS = -lz
+endif
+
 all: pciutils dep $(PROGRAM)
 
 $(PROGRAM): $(OBJS)
@@ -41,25 +51,26 @@ distclean: clean
        rm -f .dependencies
 
 dep:
-       @$(CC) -MM *.c > .dependencies
+       @$(CC) $(CFLAGS) -MM *.c > .dependencies
 
 pciutils:
-       @echo; echo -n "Checking for pciutils and zlib... "
-       @$(shell ( echo "#include <pci/pci.h>";            \
-                  echo "struct pci_access *pacc;";        \
-                  echo "int main(int argc, char **argv)"; \
-                  echo "{ pacc = pci_alloc(); return 0; }"; ) > .test.c )
-       @$(CC) $(CFLAGS) .test.c -o .test $(LDFLAGS) &>/dev/null &&     \
-               echo "found." || ( echo "not found."; echo;             \
-               echo "Please install pciutils-devel and zlib-devel.";   \
-               echo "See README for more information."; echo;          \
+       @printf "\nChecking for pciutils and zlib... "
+       @$(shell ( printf "#include <pci/pci.h>\n";             \
+                  printf "struct pci_access *pacc;\n";         \
+                  printf "int main(int argc, char **argv)\n";  \
+                  printf "{ pacc = pci_alloc(); return 0; }\n"; ) > .test.c )
+       @$(CC) $(CFLAGS) $(LDFLAGS) .test.c -o .test &>/dev/null &&       \
+               printf "found.\n" || ( printf "not found.\n\n";           \
+               printf "Please install pciutils-devel and zlib-devel.\n"; \
+               printf "See README for more information.\n\n";            \
                rm -f .test.c .test; exit 1)
-       @rm -f .test.c .test
+       @rm -rf .test.c .test .test.dSYM
 
 install: $(PROGRAM)
-       $(INSTALL) $(PROGRAM) $(PREFIX)/sbin
-       mkdir -p $(PREFIX)/share/man/man8
-       $(INSTALL) $(PROGRAM).8 $(PREFIX)/share/man/man8
+       mkdir -p $(DESTDIR)$(PREFIX)/sbin
+       $(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
+       mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
+       $(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
 
 .PHONY: all clean distclean dep pciutils