Skip to content

Commit 4457966

Browse files
author
falkTX
committed
Rename lib target
1 parent b4f2fc0 commit 4457966

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

+5-5
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ LIBDIR = $(PREFIX)/lib
7474

7575
# ----------------------------------------------------------------------------------------------------------------------------
7676

77-
all: build/hylia.a build/hylia.pc
77+
all: build/libhylia.a build/hylia.pc
7878

7979
# ----------------------------------------------------------------------------------------------------------------------------
8080

@@ -91,18 +91,18 @@ install: all
9191
install -d $(DESTDIR)$(LIBDIR)/pkgconfig
9292

9393
install -m 644 hylia.h $(DESTDIR)$(INCDIR)
94-
install -m 644 build/hylia.a $(DESTDIR)$(LIBDIR)
94+
install -m 644 build/libhylia.a $(DESTDIR)$(LIBDIR)
9595
install -m 644 build/hylia.pc $(DESTDIR)$(LIBDIR)/pkgconfig
9696

9797
uninstall:
9898
rm -f $(DESTDIR)$(INCDIR)/hylia.h
99-
rm -f $(DESTDIR)$(LIBDIR)/hylia.a
99+
rm -f $(DESTDIR)$(LIBDIR)/libhylia.a
100100
rm -f $(DESTDIR)$(LIBDIR)/pkgconfig/hylia.pc
101101

102102
# ----------------------------------------------------------------------------------------------------------------------------
103103

104-
build/hylia.a: $(OBJS)
105-
@echo "Creating hylia.a"
104+
build/libhylia.a: $(OBJS)
105+
@echo "Creating libhylia.a"
106106
@rm -f $@
107107
@$(AR) crs $@ $^
108108

0 commit comments

Comments
 (0)