2008-03-10 23:26:18 +01:00
|
|
|
#
|
2008-05-14 00:14:21 +02:00
|
|
|
# Makefile for inteltool utility
|
|
|
|
#
|
2010-04-27 08:56:47 +02:00
|
|
|
# Copyright (C) 2008 by coresystems GmbH
|
|
|
|
# written by Stefan Reinauer <stepan@coresystems.de>
|
|
|
|
#
|
2008-05-14 00:14:21 +02:00
|
|
|
# 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
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2008-03-10 23:26:18 +01:00
|
|
|
#
|
|
|
|
|
2008-05-14 00:14:21 +02:00
|
|
|
PROGRAM = inteltool
|
2008-03-10 23:26:18 +01:00
|
|
|
|
2008-05-14 00:14:21 +02:00
|
|
|
CC = gcc
|
2008-03-10 23:26:18 +01:00
|
|
|
INSTALL = /usr/bin/install
|
2008-05-14 00:14:21 +02:00
|
|
|
PREFIX = /usr/local
|
|
|
|
CFLAGS = -O2 -g -Wall -W
|
2010-04-27 08:56:47 +02:00
|
|
|
LDFLAGS = -lpci -lz
|
2008-05-14 00:14:21 +02:00
|
|
|
|
2012-01-08 15:27:18 +01:00
|
|
|
OBJS = inteltool.o cpu.o gpio.o rootcmplx.o powermgt.o memory.o pcie.o amb.o
|
2008-03-10 23:26:18 +01:00
|
|
|
|
2008-12-04 16:18:20 +01:00
|
|
|
OS_ARCH = $(shell uname)
|
|
|
|
ifeq ($(OS_ARCH), Darwin)
|
2011-03-18 23:08:39 +01:00
|
|
|
LDFLAGS = -framework DirectHW -lpci -lz
|
2008-12-04 16:18:20 +01:00
|
|
|
endif
|
2010-10-24 15:50:13 +02:00
|
|
|
ifeq ($(OS_ARCH), FreeBSD)
|
|
|
|
CFLAGS += -I/usr/local/include
|
|
|
|
LDFLAGS += -L/usr/local/lib
|
|
|
|
LIBS = -lz
|
|
|
|
endif
|
2008-12-04 16:18:20 +01:00
|
|
|
|
2008-03-10 23:26:18 +01:00
|
|
|
all: pciutils dep $(PROGRAM)
|
|
|
|
|
|
|
|
$(PROGRAM): $(OBJS)
|
2011-11-14 21:40:34 +01:00
|
|
|
$(CC) $(CFLAGS) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
|
2008-03-10 23:26:18 +01:00
|
|
|
|
|
|
|
clean:
|
2008-06-22 19:15:03 +02:00
|
|
|
rm -f $(PROGRAM) *.o *~
|
2008-03-10 23:26:18 +01:00
|
|
|
|
|
|
|
distclean: clean
|
2008-06-22 19:15:03 +02:00
|
|
|
rm -f .dependencies
|
2008-05-14 23:20:55 +02:00
|
|
|
|
2008-03-10 23:26:18 +01:00
|
|
|
dep:
|
2008-12-04 16:18:20 +01:00
|
|
|
@$(CC) $(CFLAGS) -MM *.c > .dependencies
|
2008-03-10 23:26:18 +01:00
|
|
|
|
|
|
|
pciutils:
|
2008-12-04 16:18:20 +01:00
|
|
|
@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 )
|
2011-11-14 21:40:34 +01:00
|
|
|
@$(CC) $(CFLAGS) .test.c -o .test $(LDFLAGS) &>/dev/null && \
|
2008-12-04 16:18:20 +01:00
|
|
|
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"; \
|
2008-03-10 23:26:18 +01:00
|
|
|
rm -f .test.c .test; exit 1)
|
2008-12-04 16:18:20 +01:00
|
|
|
@rm -rf .test.c .test .test.dSYM
|
2008-03-10 23:26:18 +01:00
|
|
|
|
|
|
|
install: $(PROGRAM)
|
2009-09-01 11:52:14 +02:00
|
|
|
mkdir -p $(DESTDIR)$(PREFIX)/sbin
|
2008-12-04 16:18:20 +01:00
|
|
|
$(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/sbin
|
|
|
|
mkdir -p $(DESTDIR)$(PREFIX)/share/man/man8
|
|
|
|
$(INSTALL) $(PROGRAM).8 $(DESTDIR)$(PREFIX)/share/man/man8
|
2008-03-10 23:26:18 +01:00
|
|
|
|
|
|
|
.PHONY: all clean distclean dep pciutils
|
|
|
|
|
|
|
|
-include .dependencies
|
|
|
|
|