author | Lars Hjemli <hjemli@gmail.com> | 2008-10-11 18:21:06 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-10-11 18:21:06 (UTC) |
commit | efaccb3d6ab7abc459681e27b6c9b2d8119333eb (patch) (unidiff) | |
tree | e93893e92a41384425d939978c686fbd622a7cc3 /Makefile | |
parent | cb1cc0d82d764051d8376281fcb556153f074c1a (diff) | |
download | cgit-efaccb3d6ab7abc459681e27b6c9b2d8119333eb.zip cgit-efaccb3d6ab7abc459681e27b6c9b2d8119333eb.tar.gz cgit-efaccb3d6ab7abc459681e27b6c9b2d8119333eb.tar.bz2 |
Makefile: enable compilation on uclibc
Original-patch-by: Natanael Copa <natanael.copa@gmail.com>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -84,24 +84,27 @@ all: cgit | |||
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 | ||