summaryrefslogtreecommitdiffstats
path: root/contrib/wakeonlan/Makefile
diff options
context:
space:
mode:
authorMichael Brown2008-03-19 02:08:38 +0100
committerMichael Brown2008-03-19 02:08:38 +0100
commit7067142fb492d911588581d7620797e0a6bc706b (patch)
treea69b75327e4fdfecff0829bb8e5b000f71d807cd /contrib/wakeonlan/Makefile
parent[Settings] Allow named settings to have their type specified explicitly (diff)
downloadipxe-7067142fb492d911588581d7620797e0a6bc706b.tar.gz
ipxe-7067142fb492d911588581d7620797e0a6bc706b.tar.xz
ipxe-7067142fb492d911588581d7620797e0a6bc706b.zip
[Contribs] Add updated wake-on-LAN patch from Bill <level42@sympatico.ca>
Diffstat (limited to 'contrib/wakeonlan/Makefile')
-rw-r--r--contrib/wakeonlan/Makefile37
1 files changed, 0 insertions, 37 deletions
diff --git a/contrib/wakeonlan/Makefile b/contrib/wakeonlan/Makefile
deleted file mode 100644
index 563faa93..00000000
--- a/contrib/wakeonlan/Makefile
+++ /dev/null
@@ -1,37 +0,0 @@
-## Makefile for use with gnu make and MinGW32 gnu gcc
-
-TARGET=wol
-
-CC=gcc
-LD=gcc
-
-CPPFLAGS= -Wall -O2
-LFLAGS= -s
-
-#LIBFILES= -lwsock
-#LIBPATH= -L/usr/lib
-
-ICON=$(TARGET).ico
-OBJS=$(TARGET).o
-RESF=$(TARGET).rc
-
-#RESNAME=$(TARGET).res
-#BINNAME=$(TARGET).exe
-BINNAME=$(TARGET)
-
-$(BINNAME): $(OBJS) $(RESNAME)
- $(LD) $(LFLAGS) -o $@ $^ $(LIBPATH) $(LIBFILES)
-
-%.res:%.rc
- windres -I rc -O coff -i $< -o $@
-
-%.rc:Makefile
- @echo 100 ICON "$(ICON)" > $@
-
-dist:$(BINNAME)
- rm -f $(OBJS) $(RESNAME) $(RESF)
-
-clean:
- rm -f $(OBJS) $(RESNAME) $(RESF)
- rm -f $(BINNAME)
-