summaryrefslogtreecommitdiff
path: root/gpxe/Makefile
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2016-02-09 18:08:47 -0800
committerH. Peter Anvin <hpa@zytor.com>2016-02-09 18:08:47 -0800
commitf2f897a1762fab84d2905f32b1c15dd7b42abb56 (patch)
treea38f51d3f1fcbf44afddb4736d549c12eaf491be /gpxe/Makefile
parent72d2959272b4616f17a97667e6dfa9d06bf109a3 (diff)
downloadsyslinux-f2f897a1762fab84d2905f32b1c15dd7b42abb56.tar.gz
gpxe: delete long since obsolete snapshot of gPXE
gPXE has been deprecated in favor of iPXE for many, many years now. It is much better than users get it directly from the iPXE project, since we should no longer need any special modifications for Syslinux use. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'gpxe/Makefile')
-rw-r--r--gpxe/Makefile54
1 files changed, 0 insertions, 54 deletions
diff --git a/gpxe/Makefile b/gpxe/Makefile
deleted file mode 100644
index 73ee261f..00000000
--- a/gpxe/Makefile
+++ /dev/null
@@ -1,54 +0,0 @@
-## -----------------------------------------------------------------------
-##
-## Copyright 2008-2009 H. Peter Anvin - All Rights Reserved
-## Copyright 2009-2011 Intel Corporation; author: H. Peter Anvin
-##
-## 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, Inc., 51 Franklin St, Fifth Floor,
-## Boston MA 02110-1301, USA; either version 2 of the License, or
-## (at your option) any later version; incorporated herein by reference.
-##
-## -----------------------------------------------------------------------
-
-#
-# Makefile for gpxe/gpxelinux.0
-#
-# Very simple, really...
-#
-
-VPATH = $(SRC)
-TARGETS = gpxelinux.0 gpxelinuxk.0
-
-PXEMAKE = $(MAKE) -C $(SRC)/src NO_WERROR=1
-
-all: $(TARGETS)
-
-tidy:
-
-clean: tidy
-
-dist:
- $(MAKE) -C $(SRC)/src veryclean > /dev/null 2>&1
-
-spotless: clean dist
- rm -f $(TARGETS)
-
-installer:
-
-.NOTPARALLEL:
-
-src/bin/blib.a:
- $(PXEMAKE) bin/blib.a
-
-src/bin/undionly.kkpxe: src/bin/blib.a pxelinux.gpxe $(objdir)/core/pxelinux.0
- $(PXEMAKE) bin/undionly.kkpxe EMBEDDED_IMAGE=$(SRC)/pxelinux.gpxe,$(objdir)/core/pxelinux.0
-
-gpxelinux.0: src/bin/undionly.kkpxe
- cp -f $(SRC)/$< $@
-
-src/bin/undionly.kpxe: src/bin/blib.a pxelinuxk.gpxe $(objdir)/core/pxelinux.0
- $(PXEMAKE) bin/undionly.kpxe EMBEDDED_IMAGE=$(SRC)/pxelinuxk.gpxe,$(objdir)/core/pxelinux.0
-
-gpxelinuxk.0: src/bin/undionly.kpxe
- cp -f $(SRC)/$< $@