aboutsummaryrefslogtreecommitdiff
path: root/util/ifdfake/Makefile
diff options
context:
space:
mode:
authorAngel Pons <th3fanbus@gmail.com>2018-08-20 16:39:47 +0200
committerStefan Reinauer <stefan.reinauer@coreboot.org>2018-08-23 18:06:31 +0000
commit58a7e397a1168253216e68e753545dd8f18a690f (patch)
treef46a61986e4a22d4ba8c864694a13f4735196a91 /util/ifdfake/Makefile
parentcf79c8344d007cf05bc45d064ffed87be36f7513 (diff)
util/ifdfake: Remove deprecated utility
Since ifdfake has been deprecated in favor of better alternatives, there is no need to support it any further. Remove it from "util/", as well as any leftover references in other files. Change-Id: I45fe3d9fd606a61d5c3b9d0e6489a1df6d6510f0 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/28234 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util/ifdfake/Makefile')
-rw-r--r--util/ifdfake/Makefile39
1 files changed, 0 insertions, 39 deletions
diff --git a/util/ifdfake/Makefile b/util/ifdfake/Makefile
deleted file mode 100644
index 4080ef9863..0000000000
--- a/util/ifdfake/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-#
-# ifdfake - Create an Intel Firmware Descriptor with just a section layout
-#
-# Copyright (C) 2013 secunet Security Networks AG
-#
-# 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; version 2 of the License.
-#
-# 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.
-#
-
-PROGRAM = ifdfake
-
-CC ?= gcc
-INSTALL ?= /usr/bin/install
-PREFIX ?= /usr/local
-CFLAGS ?= -O2 -g -Wall -W
-
-OBJS = ifdfake.o
-
-all: $(PROGRAM)
-
-$(PROGRAM): $(OBJS)
- $(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
-
-clean:
- rm -f $(PROGRAM) *.o *~
-
-distclean: clean
-
-install: $(PROGRAM)
- mkdir -p $(DESTDIR)$(PREFIX)/bin
- $(INSTALL) $(PROGRAM) $(DESTDIR)$(PREFIX)/bin
-
-.PHONY: all clean distclean