summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/gpxe/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux-4.02/gpxe/Makefile')
-rw-r--r--contrib/syslinux-4.02/gpxe/Makefile41
1 files changed, 41 insertions, 0 deletions
diff --git a/contrib/syslinux-4.02/gpxe/Makefile b/contrib/syslinux-4.02/gpxe/Makefile
new file mode 100644
index 0000000..b079d53
--- /dev/null
+++ b/contrib/syslinux-4.02/gpxe/Makefile
@@ -0,0 +1,41 @@
+## -----------------------------------------------------------------------
+##
+## Copyright 2008-2009 H. Peter Anvin - All Rights Reserved
+## Copyright 2009 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...
+#
+
+TARGETS = gpxelinux.0
+
+all: $(TARGETS)
+
+tidy:
+
+clean: tidy
+
+dist:
+ $(MAKE) -C src veryclean > /dev/null 2>&1
+
+spotless: clean dist
+ rm -f $(TARGETS)
+
+installer:
+
+src/bin/undionly.kkpxe: pxelinux.gpxe ../core/pxelinux.0
+ $(MAKE) -C src bin/undionly.kkpxe NO_WERROR=1 \
+ EMBEDDED_IMAGE=../pxelinux.gpxe,../../core/pxelinux.0
+
+gpxelinux.0: src/bin/undionly.kkpxe
+ cp -f $< $@