author | Lars Hjemli <hjemli@gmail.com> | 2008-10-11 18:21:17 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-10-11 18:21:17 (UTC) |
commit | 8011587ef34d98398b60be8fcd6c6ecf499c0676 (patch) (unidiff) | |
tree | e5b980763fe2c86b52932e959aa8eeeefb6bd44c | |
parent | ed7ff095ca467cdc4c8a1a1459847d68e50c9b91 (diff) | |
parent | efaccb3d6ab7abc459681e27b6c9b2d8119333eb (diff) | |
download | cgit-8011587ef34d98398b60be8fcd6c6ecf499c0676.zip cgit-8011587ef34d98398b60be8fcd6c6ecf499c0676.tar.gz cgit-8011587ef34d98398b60be8fcd6c6ecf499c0676.tar.bz2 |
Merge branch 'stable'
* stable:
Makefile: enable compilation on uclibc
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -80,32 +80,35 @@ endif | |||
80 | .PHONY: all libgit test install uninstall clean force-version get-git | 80 | .PHONY: all libgit test install uninstall clean force-version get-git |
81 | 81 | ||
82 | all: cgit | 82 | all: cgit |
83 | 83 | ||
84 | VERSION: force-version | 84 | VERSION: force-version |
85 | @./gen-version.sh "$(CGIT_VERSION)" | 85 | @./gen-version.sh "$(CGIT_VERSION)" |
86 | -include VERSION | 86 | -include VERSION |
87 | 87 | ||
88 | 88 | ||
89 | CFLAGS += -g -Wall -Igit | 89 | CFLAGS += -g -Wall -Igit |
90 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' | 90 | CFLAGS += -DSHA1_HEADER='$(SHA1_HEADER)' |
91 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' | 91 | CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"' |
92 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' | 92 | CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' |
93 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' | 93 | CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' |
94 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' | 94 | CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' |
95 | 95 | ||
96 | ifdef NO_ICONV | ||
97 | CFLAGS += -DNO_ICONV | ||
98 | endif | ||
96 | 99 | ||
97 | cgit: $(OBJECTS) libgit | 100 | cgit: $(OBJECTS) libgit |
98 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) | 101 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
99 | 102 | ||
100 | cgit.o: VERSION | 103 | cgit.o: VERSION |
101 | 104 | ||
102 | -include $(OBJECTS:.o=.d) | 105 | -include $(OBJECTS:.o=.d) |
103 | 106 | ||
104 | libgit: | 107 | libgit: |
105 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a | 108 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a |
106 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a | 109 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a |
107 | 110 | ||
108 | test: all | 111 | test: all |
109 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all | 112 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all |
110 | 113 | ||
111 | install: all | 114 | install: all |