summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 77c0c9a..e79e298 100644
--- a/Makefile
+++ b/Makefile
@@ -20,7 +20,7 @@ KERNEL_VERSION=3.1.4
UCLIBC_VERSION=0.9.32
BUSYBOX_VERSION=1.19.3
ACPID_VERSION=1.0.10
-GPM_VERSION=1.20.6
+GPM_VERSION=1.20.7
PERL_VERSION=5.12.1
LUA_VERSION=5.1.4
@@ -62,8 +62,8 @@ step2: disk-image mount-root directory-layout initial-devices
# step3: boot loader
step3: syslinux syslinux-loader
-# step4: kernel, uclibc C-library, busybox, basic tools, ACPI daemon
-step4: kernel busybox acpid
+# step4: kernel, uclibc C-library, busybox, basic tools, ACPI daemon, GPM
+step4: kernel busybox acpid gpm
# step5: additional user space tools:
# - GPM for mouse copy-pate (disabled, no 64-bit safe)
@@ -183,6 +183,7 @@ busybox-clean:
gpm:
-rm -rf gpm-$(GPM_VERSION)
tar jxf tarballs/gpm-$(GPM_VERSION).tar.bz2
+ cd gpm-$(GPM_VERSION) && ./autogen.sh
cd gpm-$(GPM_VERSION) && ./configure --prefix=/usr --without-curses
cd gpm-$(GPM_VERSION) && make LDFLAGS="-lm" $(PARALLEL)
cd gpm-$(GPM_VERSION) && cp src/gpm ../target/usr/sbin