2008-12-21 23:57:02 +01:00
|
|
|
include ../vars.mk
|
|
|
|
|
|
|
|
# The shared library.
|
|
|
|
MAJOR = 0
|
|
|
|
MINOR = 0
|
|
|
|
MICRO = 0
|
|
|
|
LIBXBPS_SO = $(LIBXBPS).$(MAJOR).$(MINOR).$(MICRO)
|
|
|
|
LIBXBPS = libxbps.so
|
2008-12-23 12:28:21 +01:00
|
|
|
LIBXBPS_LDFLAGS = -larchive -lprop -shared -Wl,-soname,$(LIBXBPS).$(MAJOR)
|
|
|
|
|
2009-02-10 02:52:12 +01:00
|
|
|
OBJECTS = cmpver.o depends.o fexec.o humanize_number.o install.o
|
2009-03-02 02:26:20 +01:00
|
|
|
OBJECTS += orphans.o plist.o remove.o repository.o requiredby.o
|
|
|
|
OBJECTS += sha256.o sortdeps.o unpack.o util.o
|
2008-12-21 23:57:02 +01:00
|
|
|
|
|
|
|
all: $(LIBXBPS)
|
|
|
|
.PHONY: all
|
|
|
|
|
2008-12-23 12:28:21 +01:00
|
|
|
$(LIBXBPS): $(OBJECTS)
|
2008-12-21 23:57:02 +01:00
|
|
|
$(CC) $(LIBXBPS_LDFLAGS) $^ -o $(LIBXBPS_SO)
|
|
|
|
-ln -sf $(LIBXBPS_SO) $(LIBXBPS).$(MAJOR)
|
|
|
|
-ln -sf $(LIBXBPS_SO) $(LIBXBPS)
|
|
|
|
|
2008-12-22 02:14:40 +01:00
|
|
|
install: $(LIBXBPS)
|
|
|
|
install -d $(LIBDIR)
|
|
|
|
install -m 644 $(LIBXBPS_SO) $(LIBDIR)
|
2009-02-16 02:26:27 +01:00
|
|
|
cp -a $(LIBXBPS) $(LIBDIR)
|
|
|
|
cp -a $(LIBXBPS).$(MAJOR) $(LIBDIR)
|
2008-12-22 02:14:40 +01:00
|
|
|
|
2008-12-21 23:57:02 +01:00
|
|
|
.PHONY: clean
|
|
|
|
clean: clean-lib clean-objs
|
|
|
|
|
|
|
|
clean-lib:
|
|
|
|
-rm -f $(LIBXBPS)*
|
|
|
|
|
|
|
|
clean-objs:
|
|
|
|
-rm -f *.o
|