f3b0b19258
- Removed -c --clean mode. It's not too useful and adds a considerable amount of gratuitous code. It takes almost the same time than adding all pkgs from scratch. - When creating the repository data always add the meta plist at the 2nd position in the archive, to optimize its access. - Misc improvements.
10 lines
216 B
Makefile
10 lines
216 B
Makefile
TOPDIR = ../..
|
|
-include $(TOPDIR)/config.mk
|
|
|
|
BIN = xbps-rindex
|
|
OBJS = main.o index-add.o remove-obsoletes.o repoflush.o
|
|
OBJS += readpassphrase.o sign.o
|
|
EXTRA_CFLAGS = -Wno-unused-result
|
|
|
|
include $(TOPDIR)/mk/prog.mk
|