vp-build/bin/xbps-repo/Makefile

25 lines
319 B
Makefile
Raw Normal View History

TOPDIR = ../..
include $(TOPDIR)/vars.mk
OBJS = util.o main.o
BIN = xbps-repo
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
install: $(BIN)
install -d $(SBINDIR)
install -m 755 $(BIN) $(SBINDIR)