libgit-thin: Introduces git_revlist_show_merges()
[git/libgit-gsoc.git] / libgit-thin / make.subdirs
blobb8c020577d13a268453e97346cbc16a1f60bfbdf
1 GIT_SRC_DIR   = ../..
2 GIT_THIN_SRC  = ..
3 GIT_LIB_THIN := $(GIT_THIN_SRC)/libgit-thin.a $(GIT_SRC_DIR)/libgit.a \
4                 $(GIT_SRC_DIR)/xdiff/lib.a
5 GIT_LIBS      = -lz -lcrypto
6 GIT_HEADERS  := -I$(GIT_SRC_DIR) -I$(GIT_THIN_SRC)
7 CLEAN_FILES   = *~ *.o core.*
9 ifndef V
10         QUIET_CC       = @echo '   ' CC $@;
11 endif
13 ifeq ($(findstring $(MAKEFLAGS),s),s)
14 QUIET_CC =
15 endif