summaryrefslogtreecommitdiffabout
path: root/Makefile
authorHarley Laue <losinggeneration@gmail.com>2008-09-19 02:06:18 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2008-09-20 11:47:58 (UTC)
commit06e14dc61cf36c146f04de91497d2fe866c46f5e (patch) (unidiff)
treee568adadba7fc1c4070494806d52625633f48552 /Makefile
parentdd80ef59e7cad0146b7e4812afa3f84ea3d1c7b8 (diff)
downloadcgit-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>
Diffstat (limited to 'Makefile') (more/less context) (show whitespace changes)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 302ff4c..2fe537e 100644
--- a/Makefile
+++ b/Makefile
@@ -92,13 +92,13 @@ CFLAGS += -DCGIT_VERSION='"$(CGIT_VERSION)"'
92CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"' 92CFLAGS += -DCGIT_CONFIG='"$(CGIT_CONFIG)"'
93CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"' 93CFLAGS += -DCGIT_SCRIPT_NAME='"$(CGIT_SCRIPT_NAME)"'
94CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"' 94CFLAGS += -DCGIT_CACHE_ROOT='"$(CACHE_ROOT)"'
95 95
96 96
97cgit: $(OBJECTS) libgit 97cgit: $(OBJECTS) libgit
98 $(QUIET_CC)$(CC) $(CFLAGS) -o cgit $(OBJECTS) $(EXTLIBS) 98 $(QUIET_CC)$(CC) $(CFLAGS) $(LDFLAGS) -o cgit $(OBJECTS) $(EXTLIBS)
99 99
100cgit.o: VERSION 100cgit.o: VERSION
101 101
102-include $(OBJECTS:.o=.d) 102-include $(OBJECTS:.o=.d)
103 103
104libgit: 104libgit: