mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-04-27 11:10:49 +00:00
* Add parse seahub database config * Get nickname from seahub database * Go get nickname from seahub database * Save output of script to memory and fix some errors * Add exec permission and free child_output --------- Co-authored-by: 杨赫然 <heran.yang@seafile.com>
32 lines
595 B
Makefile
32 lines
595 B
Makefile
MAKE_CLIENT =
|
|
|
|
if WIN32
|
|
MAKE_CONTROLLER =
|
|
else
|
|
MAKE_CONTROLLER = controller
|
|
endif
|
|
|
|
if COMPILE_FUSE
|
|
MAKE_FUSE = fuse
|
|
else
|
|
MAKE_FUSE =
|
|
endif
|
|
|
|
MAKE_SERVER = server tools $(MAKE_CONTROLLER) $(MAKE_FUSE)
|
|
|
|
SUBDIRS = include lib common python $(MAKE_SERVER) doc scripts
|
|
|
|
DIST_SUBDIRS = include lib common python server tools controller fuse doc scripts
|
|
|
|
INTLTOOL = \
|
|
intltool-extract.in \
|
|
intltool-merge.in \
|
|
intltool-update.in
|
|
|
|
EXTRA_DIST = install-sh $(INTLTOOL) README.markdown scripts LICENSE.txt
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
|
|
|
dist-hook:
|
|
git log --format='%H' -1 > $(distdir)/latest_commit
|