mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-04 12:18:08 -07:00
Also taking ownership by myself. Closes: https://bugs.gentoo.org/697208 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Conrad Kostecki <conrad@kostecki.com> Signed-off-by: Aaron Bauman <bman@gentoo.org>
21 lines
446 B
Diff
21 lines
446 B
Diff
--- a/Makefile 2002-07-08 15:31:37.000000000 +0200
|
|
+++ b/Makefile 2019-11-06 20:38:11.499806312 +0100
|
|
@@ -1,13 +1,14 @@
|
|
#CC=mips-uclibc-gcc
|
|
#LDFLAGS=-static
|
|
|
|
-CFLAGS=-O2 -Wall
|
|
+CFLAGS?=-O2 -Wall
|
|
|
|
all: putlcd buttond
|
|
|
|
install: all
|
|
- install putlcd /usr/local/sbin
|
|
- install buttond /usr/local/sbin
|
|
+ install -d ${DESTDIR}/usr/bin
|
|
+ install putlcd ${DESTDIR}/usr/bin
|
|
+ install buttond ${DESTDIR}/usr/bin
|
|
|
|
clean:
|
|
rm -f putlcd buttond *.o
|