diff options
author | andreas 'randy' weinberger <vdr@smue.org> | 2011-01-26 11:37:15 +0100 |
---|---|---|
committer | andreas 'randy' weinberger <vdr@smue.org> | 2011-01-26 11:37:15 +0100 |
commit | 1eabbd742da6d0ce442865b35c364e554d946022 (patch) | |
tree | a22393da5ac645dd073fb5c6c2efa689d4286914 | |
parent | b40c55ddd61a52dc67e5c4a51a7da9923e26db13 (diff) | |
download | graphlcd-base-1eabbd742da6d0ce442865b35c364e554d946022.tar.gz graphlcd-base-1eabbd742da6d0ce442865b35c364e554d946022.tar.bz2 |
removed unneeded LDFLAGS
see http://projects.vdr-developer.org/issues/530
-rw-r--r-- | glcddrivers/Makefile | 2 | ||||
-rw-r--r-- | glcdgraphics/Makefile | 2 | ||||
-rw-r--r-- | glcdskin/Makefile | 2 | ||||
-rw-r--r-- | tools/convpic/Makefile | 2 | ||||
-rw-r--r-- | tools/crtfont/Makefile | 2 | ||||
-rw-r--r-- | tools/genfont/Makefile | 2 | ||||
-rw-r--r-- | tools/lcdtestpattern/Makefile | 2 | ||||
-rw-r--r-- | tools/showpic/Makefile | 2 | ||||
-rw-r--r-- | tools/showtext/Makefile | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/glcddrivers/Makefile b/glcddrivers/Makefile index 331c829..acb1577 100644 --- a/glcddrivers/Makefile +++ b/glcddrivers/Makefile @@ -28,7 +28,7 @@ endif ### Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: diff --git a/glcdgraphics/Makefile b/glcdgraphics/Makefile index 399b3ad..7f7ff74 100644 --- a/glcdgraphics/Makefile +++ b/glcdgraphics/Makefile @@ -21,7 +21,7 @@ HEADERS = bitmap.h font.h glcd.h image.h imagefile.h pbm.h ### Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: diff --git a/glcdskin/Makefile b/glcdskin/Makefile index c67582c..9b3b867 100644 --- a/glcdskin/Makefile +++ b/glcdskin/Makefile @@ -38,7 +38,7 @@ $(DEPFILE): Makefile all: $(LIBNAME) $(LIBNAME): $(OBJS) - $(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -Wl,-soname="$(BASENAME).$(VERMAJOR)" -o $@ + $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -Wl,-soname="$(BASENAME).$(VERMAJOR)" -o $@ ln -sf $(LIBNAME) $(BASENAME) install: all diff --git a/tools/convpic/Makefile b/tools/convpic/Makefile index f666b4e..3932e5f 100644 --- a/tools/convpic/Makefile +++ b/tools/convpic/Makefile @@ -18,7 +18,7 @@ all: $(PRGNAME) # Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: diff --git a/tools/crtfont/Makefile b/tools/crtfont/Makefile index 29f0b5e..bcd100f 100644 --- a/tools/crtfont/Makefile +++ b/tools/crtfont/Makefile @@ -17,7 +17,7 @@ all: $(PRGNAME) # Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: diff --git a/tools/genfont/Makefile b/tools/genfont/Makefile index bed4d9c..14837b0 100644 --- a/tools/genfont/Makefile +++ b/tools/genfont/Makefile @@ -20,7 +20,7 @@ all: $(PRGNAME) # Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: diff --git a/tools/lcdtestpattern/Makefile b/tools/lcdtestpattern/Makefile index da165e2..504e27c 100644 --- a/tools/lcdtestpattern/Makefile +++ b/tools/lcdtestpattern/Makefile @@ -18,7 +18,7 @@ all: $(PRGNAME) # Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: diff --git a/tools/showpic/Makefile b/tools/showpic/Makefile index 17e88d3..5d15d61 100644 --- a/tools/showpic/Makefile +++ b/tools/showpic/Makefile @@ -18,7 +18,7 @@ all: $(PRGNAME) # Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: diff --git a/tools/showtext/Makefile b/tools/showtext/Makefile index 1da8fb5..d0d963a 100644 --- a/tools/showtext/Makefile +++ b/tools/showtext/Makefile @@ -18,7 +18,7 @@ all: $(PRGNAME) # Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: |