summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux/latest/com32/gpllib/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/syslinux/latest/com32/gpllib/Makefile')
-rw-r--r--contrib/syslinux/latest/com32/gpllib/Makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/contrib/syslinux/latest/com32/gpllib/Makefile b/contrib/syslinux/latest/com32/gpllib/Makefile
deleted file mode 100644
index fa866db..0000000
--- a/contrib/syslinux/latest/com32/gpllib/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# LGPL/GPL code library
-#
-
-# Include configuration rules
-topdir = ../..
-include ../lib/MCONFIG
-
-REQFLAGS += -I../gplinclude
-
-GPLDIRS := . disk dmi vpd
-LIBOBJS := $(foreach dir,$(GPLDIRS),$(patsubst %.c,%.o,$(wildcard $(dir)/*.c)))
-
-BINDIR = /usr/bin
-LIBDIR = /usr/lib
-DATADIR = /usr/share
-AUXDIR = $(DATADIR)/syslinux
-INCDIR = /usr/include
-COM32DIR = $(AUXDIR)/com32
-
-all: libcom32gpl.a
-
-libcom32gpl.a : $(LIBOBJS)
- rm -f $@
- $(AR) cq $@ $^
- $(RANLIB) $@
-
-tidy dist clean:
- find . \( -name \*.o -o -name \*.a -o -name .\*.d -o -name \*.tmp \) -print0 | \
- xargs -0r rm -f
-
-spotless: clean
- rm -f *.a
- rm -f *~ \#* */*~ */\#*
-
-# Mixing in the GPL include files is suboptimal, but I'm not sure
-# there is a better way to do it.
-install: all
- mkdir -m 755 -p $(INSTALLROOT)$(COM32DIR)
- install -m 644 libcom32gpl.a $(INSTALLROOT)$(COM32DIR)
- mkdir -p $(INSTALLROOT)$(COM32DIR)/include/
- cp -r ../gplinclude $(INSTALLROOT)$(COM32DIR)/include/
-
--include .*.d */.*.d */*/.*.d