mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Closes: https://bugs.gentoo.org/727836 Package-Manager: Portage-3.0.9, Repoman-3.0.1 Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
23 lines
346 B
Diff
23 lines
346 B
Diff
--- a/Makefile
|
|
+++ b/Makefile
|
|
@@ -1,7 +1,7 @@
|
|
CC = gcc
|
|
AR = ar
|
|
STRIP = strip
|
|
-LIB = libeps.a libeps.so
|
|
+LIB = libeps.so
|
|
|
|
AROPTS = -cru
|
|
RANLIB = ranlib
|
|
@@ -20,10 +20,6 @@ DEFS = -Wall -I.
|
|
|
|
all: $(LIB)
|
|
|
|
-libeps.a: $(OBJS)
|
|
- $(AR) $(AROPTS) libeps.a $(OBJS)
|
|
- $(RANLIB) libeps.a
|
|
-
|
|
libeps.so: $(OBJS)
|
|
$(CC) -shared -o libeps.so $(OBJS)
|
|
|