author | Karl Chen <quarl@cs.berkeley.edu> | 2008-11-05 10:45:18 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-11-06 19:46:44 (UTC) |
commit | 5b27248301db4b246bcd9977c6c3d2d4497b9ecb (patch) (unidiff) | |
tree | b207b2f561a77c26d7b7cbdb83bb392489845c2c | |
parent | e4d2f2b042100182ff5b214fd6848b71d70fad7d (diff) | |
download | cgit-5b27248301db4b246bcd9977c6c3d2d4497b9ecb.zip cgit-5b27248301db4b246bcd9977c6c3d2d4497b9ecb.tar.gz cgit-5b27248301db4b246bcd9977c6c3d2d4497b9ecb.tar.bz2 |
Use mode 0644 for non-executable files
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -85,45 +85,45 @@ 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 | 96 | ifdef NO_ICONV |
97 | CFLAGS += -DNO_ICONV | 97 | CFLAGS += -DNO_ICONV |
98 | endif | 98 | endif |
99 | 99 | ||
100 | cgit: $(OBJECTS) libgit | 100 | cgit: $(OBJECTS) libgit |
101 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) | 101 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
102 | 102 | ||
103 | cgit.o: VERSION | 103 | cgit.o: VERSION |
104 | 104 | ||
105 | -include $(OBJECTS:.o=.d) | 105 | -include $(OBJECTS:.o=.d) |
106 | 106 | ||
107 | libgit: | 107 | libgit: |
108 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a | 108 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a |
109 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a | 109 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a |
110 | 110 | ||
111 | test: all | 111 | test: all |
112 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all | 112 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all |
113 | 113 | ||
114 | install: all | 114 | install: all |
115 | mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) | 115 | mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) |
116 | install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 116 | install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
117 | install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css | 117 | install -m 0644 cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css |
118 | install cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png | 118 | install -m 0644 cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png |
119 | 119 | ||
120 | uninstall: | 120 | uninstall: |
121 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 121 | rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
122 | rm -f $(CGIT_SCRIPT_PATH)/cgit.css | 122 | rm -f $(CGIT_SCRIPT_PATH)/cgit.css |
123 | rm -f $(CGIT_SCRIPT_PATH)/cgit.png | 123 | rm -f $(CGIT_SCRIPT_PATH)/cgit.png |
124 | 124 | ||
125 | clean: | 125 | clean: |
126 | rm -f cgit VERSION *.o *.d | 126 | rm -f cgit VERSION *.o *.d |
127 | 127 | ||
128 | get-git: | 128 | get-git: |
129 | curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git | 129 | curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git |