Add detection/dump support for ServerEngines SE-SM 4210-P01.
[coreboot.git] / util / inteltool / Makefile
index 8856ac09b30850a5331b45c7f1a681705d48ae98..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,15 +25,18 @@ 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)
-CFLAGS += -DDARWIN -I/usr/local/include 
-LDFLAGS = -framework IOKit -framework DirectIO -L/usr/local/lib -lpci -lz
-# OBJS += darwinio.o
+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)
@@ -56,7 +59,7 @@ pciutils:
                   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) .test.c -o .test $(LDFLAGS) &>/dev/null &&       \
+       @$(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";            \
@@ -64,6 +67,7 @@ pciutils:
        @rm -rf .test.c .test .test.dSYM
 
 install: $(PROGRAM)
+       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