summaryrefslogtreecommitdiff
path: root/gpxe/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'gpxe/Makefile')
-rw-r--r--gpxe/Makefile37
1 files changed, 37 insertions, 0 deletions
diff --git a/gpxe/Makefile b/gpxe/Makefile
new file mode 100644
index 00000000..2868cbc2
--- /dev/null
+++ b/gpxe/Makefile
@@ -0,0 +1,37 @@
+## -----------------------------------------------------------------------
+##
+## Copyright 2008 H. Peter Anvin - All Rights Reserved
+##
+## 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
+ rm -f $(TARGETS)
+
+dist:
+ $(MAKE) -C src veryclean
+
+spotless: clean dist
+
+installer:
+
+gpxelinux.0: ../core/pxelinux.0
+ $(MAKE) -C src EMBEDDED_IMAGE=../$< bin/undionly.kpxe
+ cp -f src/bin/undionly.kpxe $@