From 0120e1a3d8ebb450aed5016b4653ce4a7524295e Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 16 Sep 2007 18:11:03 +0000 Subject: Split up superiotool.c into multiple source files, one per vendor. As there will be lots more supported Super I/Os soon, the file is really getting way too big... Signed-off-by: Uwe Hermann Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2777 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/superiotool/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'util/superiotool/Makefile') diff --git a/util/superiotool/Makefile b/util/superiotool/Makefile index fa9853a90b..cf96d67c7a 100644 --- a/util/superiotool/Makefile +++ b/util/superiotool/Makefile @@ -28,16 +28,18 @@ PREFIX = /usr/local CFLAGS = -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \ -Werror-implicit-function-declaration +OBJS = fintek.o ite.o nsc.o superiotool.o + all: $(PROGRAM) -$(PROGRAM): $(PROGRAM).c - $(CC) $(CFLAGS) -o $@ $< +$(PROGRAM): $(OBJS) + $(CC) $(CFLAGS) -o $(PROGRAM) $(OBJS) install: $(PROGRAM) $(INSTALL) $(PROGRAM) $(PREFIX)/bin clean: - rm -f $(PROGRAM) + rm -f $(PROGRAM) *.o .PHONY: all install clean -- cgit v1.2.3