7740958643
- Remove lib/info.c that doesn't belong in the lib and add it into the bins. - Every binary now uses its own directory on bin/. This is in preparation for future changes for correct behaviour of the library and binaries. --HG-- extra : convert_revision : 880d16378bf940c4f5478de0362afe883cd5fd2c
33 lines
705 B
Makefile
33 lines
705 B
Makefile
include ../vars.mk
|
|
|
|
# The shared library.
|
|
MAJOR = 0
|
|
MINOR = 0
|
|
MICRO = 0
|
|
LIBXBPS_SO = $(LIBXBPS).$(MAJOR).$(MINOR).$(MICRO)
|
|
LIBXBPS = libxbps.so
|
|
LIBXBPS_LDFLAGS = -larchive -lprop -shared -Wl,-soname,$(LIBXBPS).$(MAJOR)
|
|
|
|
OBJECTS = cmpver.o depends.o humanize_number.o install.o plist.o
|
|
OBJECTS += sha256.o util.o repository.o fexec.o remove.o
|
|
|
|
all: $(LIBXBPS)
|
|
.PHONY: all
|
|
|
|
$(LIBXBPS): $(OBJECTS)
|
|
$(CC) $(LIBXBPS_LDFLAGS) $^ -o $(LIBXBPS_SO)
|
|
-ln -sf $(LIBXBPS_SO) $(LIBXBPS).$(MAJOR)
|
|
-ln -sf $(LIBXBPS_SO) $(LIBXBPS)
|
|
|
|
install: $(LIBXBPS)
|
|
install -d $(LIBDIR)
|
|
install -m 644 $(LIBXBPS_SO) $(LIBDIR)
|
|
|
|
.PHONY: clean
|
|
clean: clean-lib clean-objs
|
|
|
|
clean-lib:
|
|
-rm -f $(LIBXBPS)*
|
|
|
|
clean-objs:
|
|
-rm -f *.o
|