17404bdb42
- Introduce package states: unpacked, broken, installed, etc. Not yet finished, only unpacked and installed are used for now. - Move package metadata files in binary packages directly to the top directory, this speeds up some ops and makes easier to continue working in future changes. - xbps-bin: -C flag to check the hash of package files has been superseded by the 'check' target, which verifies the integrity of an installed package. - Use the 'essential' object when upgrading packages, overwritting current files. This is needed for critical packages like sh, libc and others. - Miscellaneous tweaks and improvements thorough the code. --HG-- extra : convert_revision : 2073fcc123efc24b3e9327b5e22aa91752f20df6
45 lines
1.0 KiB
Makefile
45 lines
1.0 KiB
Makefile
include ../vars.mk
|
|
|
|
# The shared library.
|
|
MAJOR = 0
|
|
MINOR = 0
|
|
MICRO = 0
|
|
LIBXBPS_SO = $(LIBXBPS).$(MAJOR).$(MINOR).$(MICRO)
|
|
LIBXBPS = libxbps.so
|
|
LIBXBPS_STATIC = libxbps.a
|
|
LIBXBPS_LDFLAGS = -larchive -lprop -shared -Wl,-soname,$(LIBXBPS).$(MAJOR)
|
|
|
|
OBJECTS = configure.o cmpver.o depends.o fexec.o findpkg.o
|
|
OBJECTS += humanize_number.o orphans.o plist.o register.o remove.o
|
|
OBJECTS += repository.o requiredby.o sha256.o sortdeps.o state.o
|
|
OBJECTS += unpack.o util.o
|
|
|
|
all: $(LIBXBPS) $(LIBXBPS_STATIC)
|
|
.PHONY: all
|
|
|
|
$(LIBXBPS): $(OBJECTS)
|
|
$(CC) $(LIBXBPS_LDFLAGS) $^ -o $(LIBXBPS_SO)
|
|
-ln -sf $(LIBXBPS_SO) $(LIBXBPS).$(MAJOR)
|
|
-ln -sf $(LIBXBPS_SO) $(LIBXBPS)
|
|
|
|
$(LIBXBPS_STATIC): $(OBJECTS)
|
|
$(AR) rcs $@ $^
|
|
ranlib $@
|
|
|
|
install: $(LIBXBPS) $(LIBXBPS_STATIC)
|
|
install -d $(LIBDIR)
|
|
install -m 644 $(LIBXBPS_STATIC) $(LIBDIR)
|
|
install -m 644 $(LIBXBPS_SO) $(LIBDIR)
|
|
cp -a $(LIBXBPS) $(LIBDIR)
|
|
cp -a $(LIBXBPS).$(MAJOR) $(LIBDIR)
|
|
|
|
.PHONY: clean
|
|
clean: clean-lib clean-objs
|
|
|
|
clean-lib:
|
|
-rm -f $(LIBXBPS)*
|
|
-rm -f $(LIBXBPS_STATIC)
|
|
|
|
clean-objs:
|
|
-rm -f *.o
|