Commit fb9d333d authored by Felix Paul Kühne's avatar Felix Paul Kühne

contribs: make sure regex and SQLite get only compiled once per release

parent 90879cf8
......@@ -2619,6 +2619,7 @@ regex: regex-$(REGEX_VERSION).tar.gz
.regex: regex
(cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make subirs= && $(AR) ru libregex.a regex.o && $(RANLIB) libregex.a && cp -v regex.h $(PREFIX)/include && cp -v libregex.a $(PREFIX)/lib )
touch $@
CLEAN_FILE += .regex
CLEAN_PKG += regex
......@@ -2635,6 +2636,7 @@ sqlite-$(SQLITE_VERSION): sqlite-amalgamation-$(SQLITE_VERSION).tar.gz
.sqlite3: sqlite-$(SQLITE_VERSION)
(cd $<; $(HOSTCC) ./configure $(HOSTCONF) --prefix=$(PREFIX) && make && make install )
touch $@
CLEAN_FILE += .sqlite3
CLEAN_PKG += sqlite-$(SQLITE_VERSION)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment