Initial commit
FossilOrigin-Name: 5e202503fce1cf0fd217a18149bbb2d44d46adb0b997a91a633b1a4433f41a0b
This commit is contained in:
parent
02455b26d7
commit
ac03d41ce8
18 changed files with 5565 additions and 0 deletions
34
Makefile
Normal file
34
Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
SUBDIRS = src
|
||||
DISTCLEAN = ObjSQLite.oc \
|
||||
aclocal.m4 \
|
||||
autom4te.cache \
|
||||
buildsys.mk \
|
||||
config.h \
|
||||
config.log \
|
||||
config.status \
|
||||
extra.mk
|
||||
|
||||
include buildsys.mk
|
||||
include extra.mk
|
||||
|
||||
install-extra:
|
||||
i=ObjSQLite.oc; \
|
||||
packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \
|
||||
${INSTALL_STATUS}; \
|
||||
if ${MKDIR_P} $$packagesdir && ${INSTALL} -m 644 $$i $$packagesdir/$$i; then \
|
||||
${INSTALL_OK}; \
|
||||
else \
|
||||
${INSTALL_FAILED}; \
|
||||
fi
|
||||
|
||||
uninstall-extra:
|
||||
i=ObjOpenSQLite.oc; \
|
||||
packagesdir="${DESTDIR}$$(${OBJFW_CONFIG} --packages-dir)"; \
|
||||
if test -f $$packagesdir/$$i; then \
|
||||
if rm -f $$packagesdir/$$i; then \
|
||||
${DELETE_OK}; \
|
||||
else \
|
||||
${DELETE_FAILED}; \
|
||||
fi \
|
||||
fi; \
|
||||
rmdir $$packagesdir >/dev/null 2>&1 || true
|
Loading…
Add table
Add a link
Reference in a new issue