Enable -Werror for romcc
[coreboot.git] / util / inteltool / Makefile
index 3850682e5f2e7832493a2e15d0ee3510d25047de..d7540059beb6973e3a81edaef5e7a87b81826cb3 100644 (file)
@@ -27,17 +27,22 @@ PREFIX  = /usr/local
 CFLAGS  = -O2 -g -Wall -W
 LDFLAGS = -lpci -lz
 
-OBJS = inteltool.o cpu.o gpio.o rootcmplx.o powermgt.o memory.o pcie.o
+OBJS = inteltool.o cpu.o gpio.o rootcmplx.o powermgt.o memory.o pcie.o amb.o
 
 OS_ARCH        = $(shell uname)
 ifeq ($(OS_ARCH), Darwin)
-LDFLAGS = -framework DirectIO -lpci -lz
+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)
-       $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
+       $(CC) $(CFLAGS) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
 
 clean:
        rm -f $(PROGRAM) *.o *~
@@ -54,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) $(LDFLAGS) .test.c -o .test &>/dev/null &&       \
+       @$(CC) $(CFLAGS) .test.c -o .test $(LDFLAGS) &>/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";            \