diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2007-09-28 18:42:21 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-09-28 18:42:21 -0600 |
commit | 2a3e33865dd9a3d064a3c0af94ef11d4aa4a6ce4 (patch) | |
tree | 340934443ff1acfa3100001391a55e24744ad9bf /progs/slang | |
parent | e776e7a95a4fc4fac95048665ab4c981e153b7fb (diff) |
add support for LDFLAGS env var
Diffstat (limited to 'progs/slang')
-rw-r--r-- | progs/slang/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progs/slang/Makefile b/progs/slang/Makefile index 1c602ce49c..61db26d080 100644 --- a/progs/slang/Makefile +++ b/progs/slang/Makefile @@ -29,13 +29,13 @@ clean: # cltest: cltest.o framework.o $(LIB_DEP) - $(CC) cltest.o framework.o $(APP_LIB_DEPS) -o cltest + $(CC) $(LDFLAGS) cltest.o framework.o $(APP_LIB_DEPS) -o cltest sotest: sotest.o framework.o $(LIB_DEP) - $(CC) sotest.o framework.o $(APP_LIB_DEPS) -o sotest + $(CC) $(LDFLAGS) sotest.o framework.o $(APP_LIB_DEPS) -o sotest vstest: vstest.o framework.o $(LIB_DEP) - $(CC) vstest.o framework.o $(APP_LIB_DEPS) -o vstest + $(CC) $(LDFLAGS) vstest.o framework.o $(APP_LIB_DEPS) -o vstest # # objects |