author | Lukas Fleischer <info@cryptocrack.de> | 2011-01-19 13:05:48 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2011-02-19 13:13:08 (UTC) |
commit | 7c2dea03674b54aa43d17a93e6e550f03759c95f (patch) (unidiff) | |
tree | 9aa3a34304c7f876ed8fe9d4de16c9af85585583 | |
parent | aabc70f74b8c334510774ecd508699c418f48a56 (diff) | |
download | cgit-7c2dea03674b54aa43d17a93e6e550f03759c95f.zip cgit-7c2dea03674b54aa43d17a93e6e550f03759c95f.tar.gz cgit-7c2dea03674b54aa43d17a93e6e550f03759c95f.tar.bz2 |
Makefile: Make `make get-git` work under OpenBSD.
OpenBSD tar(1) defaults to read from "/dev/rst0" when not specifying an
filename and thus fails to extract the Git sourcecode when not passing
stdin as input file descriptor explicitly.
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -123,49 +123,49 @@ endif | |||
123 | ifdef NO_STRCASESTR | 123 | ifdef NO_STRCASESTR |
124 | CFLAGS += -DNO_STRCASESTR | 124 | CFLAGS += -DNO_STRCASESTR |
125 | endif | 125 | endif |
126 | 126 | ||
127 | cgit: $(OBJECTS) libgit | 127 | cgit: $(OBJECTS) libgit |
128 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) | 128 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
129 | 129 | ||
130 | cgit.o: VERSION | 130 | cgit.o: VERSION |
131 | 131 | ||
132 | -include $(OBJECTS:.o=.d) | 132 | -include $(OBJECTS:.o=.d) |
133 | 133 | ||
134 | libgit: | 134 | libgit: |
135 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 libgit.a | 135 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 libgit.a |
136 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a | 136 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a |
137 | 137 | ||
138 | test: all | 138 | test: all |
139 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all | 139 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all |
140 | 140 | ||
141 | install: all | 141 | install: all |
142 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH) | 142 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH) |
143 | $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 143 | $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
144 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH) | 144 | $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH) |
145 | $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css | 145 | $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css |
146 | $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png | 146 | $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png |
147 | 147 | ||
148 | uninstall: | 148 | uninstall: |
149 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 149 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
150 | rm -f $(CGIT_DATA_PATH)/cgit.css | 150 | rm -f $(CGIT_DATA_PATH)/cgit.css |
151 | rm -f $(CGIT_DATA_PATH)/cgit.png | 151 | rm -f $(CGIT_DATA_PATH)/cgit.png |
152 | 152 | ||
153 | doc: man-doc html-doc pdf-doc | 153 | doc: man-doc html-doc pdf-doc |
154 | 154 | ||
155 | man-doc: cgitrc.5.txt | 155 | man-doc: cgitrc.5.txt |
156 | a2x -f manpage cgitrc.5.txt | 156 | a2x -f manpage cgitrc.5.txt |
157 | 157 | ||
158 | html-doc: cgitrc.5.txt | 158 | html-doc: cgitrc.5.txt |
159 | a2x -f xhtml --stylesheet=cgit-doc.css cgitrc.5.txt | 159 | a2x -f xhtml --stylesheet=cgit-doc.css cgitrc.5.txt |
160 | 160 | ||
161 | pdf-doc: cgitrc.5.txt | 161 | pdf-doc: cgitrc.5.txt |
162 | a2x -f pdf cgitrc.5.txt | 162 | a2x -f pdf cgitrc.5.txt |
163 | 163 | ||
164 | clean: clean-doc | 164 | clean: clean-doc |
165 | rm -f cgit VERSION *.o *.d | 165 | rm -f cgit VERSION *.o *.d |
166 | 166 | ||
167 | clean-doc: | 167 | clean-doc: |
168 | rm -f cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo | 168 | rm -f cgitrc.5 cgitrc.5.html cgitrc.5.pdf cgitrc.5.xml cgitrc.5.fo |
169 | 169 | ||
170 | get-git: | 170 | get-git: |
171 | curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git | 171 | curl $(GIT_URL) | tar -xjf - && rm -rf git && mv git-$(GIT_VER) git |