diff options
author | Dan Nicholson <[email protected]> | 2007-09-28 18:42:21 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-09-28 18:42:21 -0600 |
commit | 2a3e33865dd9a3d064a3c0af94ef11d4aa4a6ce4 (patch) | |
tree | 340934443ff1acfa3100001391a55e24744ad9bf /progs/fbdev | |
parent | e776e7a95a4fc4fac95048665ab4c981e153b7fb (diff) |
add support for LDFLAGS env var
Diffstat (limited to 'progs/fbdev')
-rw-r--r-- | progs/fbdev/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/fbdev/Makefile b/progs/fbdev/Makefile index 0a0c77906f7..92bfd043c13 100644 --- a/progs/fbdev/Makefile +++ b/progs/fbdev/Makefile @@ -22,7 +22,7 @@ INCLUDES = \ .SUFFIXES: .c .c: - $(CC) $(INCLUDES) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@ + $(CC) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $< $(APP_LIB_DEPS) -o $@ .c.o: $(CC) -c $(INCLUDES) $(CFLAGS) $< -o $@ |