summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/utils/ofclient/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/roms/openbios/utils/ofclient/Makefile')
-rw-r--r--qemu/roms/openbios/utils/ofclient/Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/qemu/roms/openbios/utils/ofclient/Makefile b/qemu/roms/openbios/utils/ofclient/Makefile
deleted file mode 100644
index f3c515964..000000000
--- a/qemu/roms/openbios/utils/ofclient/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-PROGRAM := ofclient
-OBJECTS := of1275.o of1275_io.o ofclient.o
-CC := gcc
-CFLAGS := -m32 -fpic -fno-builtin-strlen -Os
-LDFLAGS := -melf_i386 -s -N -Ttext 0x200000 -e _start
-
-$(PROGRAM): $(OBJECTS)
- $(LD) $(LDFLAGS) -Map $(PROGRAM).map -o $(PROGRAM) $(OBJECTS)
-
-clean:
- rm -f $(OBJECTS)
-
-distclean: clean
- rm -f $(PROGRAM) $(PROGRAM).map