summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorstefan11111 <stefan11111@shitposting.expert>2024-02-08 21:41:49 +0200
committerstefan11111 <stefan11111@shitposting.expert>2024-02-08 21:41:49 +0200
commite5b35399de865d6075edb6ff36bbc65bbd6e4ac5 (patch)
tree6fb1fe2f2fe111a776f0806eef851a862ecaf7a2 /Makefile
parent82accf5d8a5b2d77710f13c2302c4a50138b8748 (diff)
downloadfake-dbus-e5b35399de865d6075edb6ff36bbc65bbd6e4ac5.tar.gz
properly implement last commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 918c01f..20138f0 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ XLDFLAGS = ${LDFLAGS} -shared -Wl
LIBDIR ?= /lib64
-all: libdbus-1.so.3
+all: libdbus-glib-1.so.2 libdbus-1.so.3
.c.o:
${CC} ${XCFLAGS} -c -o $@ $<
@@ -16,7 +16,7 @@ libdbus-glib-1.so.2:
libdbus-1.so.3:
${CC} ${XCFLAGS} libdbus-1.c -o libdbus-1.so.3 ${XLDFLAGS},-soname,libdbus-1.so.3
-install: libdbus-glib-1.so.2 libdbus-1.so.3
+install: libdbus-1.so.3
mkdir -p ${DESTDIR}/usr${LIBDIR}
cp -f libdbus-glib-1.so.2 ${DESTDIR}/usr${LIBDIR}
cp -f libdbus-1.so.3 ${DESTDIR}/usr${LIBDIR}