diff options
author | Harley Laue | 2008-09-18 21:06:18 -0500 |
---|---|---|
committer | Lars Hjemli | 2008-09-20 13:47:58 +0200 |
commit | 06e14dc61cf36c146f04de91497d2fe866c46f5e (patch) | |
tree | e568adadba7fc1c4070494806d52625633f48552 /Makefile | |
parent | ui-repolist: enable filtering of repos by path (diff) | |
download | cgit-06e14dc61cf36c146f04de91497d2fe866c46f5e.tar.gz cgit-06e14dc61cf36c146f04de91497d2fe866c46f5e.zip |
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>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 302ff4c..2fe537e 100644 --- a/Makefile +++ b/Makefile | |||
@@ -95,7 +95,7 @@ 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 | ||