vp-build/bin/xbps-bin/Makefile

26 lines
359 B
Makefile
Raw Normal View History

TOPDIR = ../..
include $(TOPDIR)/vars.mk
OBJS = main.o ../xbps-repo/util.o
BIN = xbps-bin
all: $(BIN)
.PHONY: all
$(BIN): $(OBJS)
$(CC) $(LDFLAGS) $^ -o $@
.PHONY: clean
clean: clean-bins clean-objs
clean-bins:
-rm -f $(BIN)
clean-objs:
-rm -f *.o
-rm -f ../xbps-repo/util.o
install: $(BIN)
install -d $(SBINDIR)
install -m 755 $(BIN) $(SBINDIR)