author | Harley Laue <losinggeneration@gmail.com> | 2008-09-19 02:06:18 (UTC) |
---|---|---|
committer | Lars Hjemli <hjemli@gmail.com> | 2008-09-20 11:47:58 (UTC) |
commit | 06e14dc61cf36c146f04de91497d2fe866c46f5e (patch) (unidiff) | |
tree | e568adadba7fc1c4070494806d52625633f48552 | |
parent | dd80ef59e7cad0146b7e4812afa3f84ea3d1c7b8 (diff) | |
download | cgit-06e14dc61cf36c146f04de91497d2fe866c46f5e.zip cgit-06e14dc61cf36c146f04de91497d2fe866c46f5e.tar.gz cgit-06e14dc61cf36c146f04de91497d2fe866c46f5e.tar.bz2 |
Add LDFLAGS to makefile.
This will allow for creating static builds which is useful for chrooted
environments.
Signed-off-by: Harley Laue <losinggeneration@gmail.com>
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -82,33 +82,33 @@ endif | |||
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 | 96 | ||
97 | cgit: $(OBJECTS) libgit | 97 | cgit: $(OBJECTS) libgit |
98 | $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) | 98 | $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) |
99 | 99 | ||
100 | cgit.o: VERSION | 100 | cgit.o: VERSION |
101 | 101 | ||
102 | -include $(OBJECTS:.o=.d) | 102 | -include $(OBJECTS:.o=.d) |
103 | 103 | ||
104 | libgit: | 104 | libgit: |
105 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a | 105 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) libgit.a |
106 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a | 106 | $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) xdiff/lib.a |
107 | 107 | ||
108 | test: all | 108 | test: all |
109 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all | 109 | $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all |
110 | 110 | ||
111 | install: all | 111 | install: all |
112 | mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) | 112 | mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) |
113 | install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) | 113 | install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) |
114 | install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css | 114 | install cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css |