diff options
Diffstat (limited to 'tools/crtfont')
-rw-r--r-- | tools/crtfont/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/crtfont/Makefile b/tools/crtfont/Makefile index 9151c2f..29f0b5e 100644 --- a/tools/crtfont/Makefile +++ b/tools/crtfont/Makefile @@ -17,7 +17,7 @@ all: $(PRGNAME) # Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< + $(CXX) $(CXXFLAGS) $(LDFLAGS) -c $(DEFINES) $(INCLUDES) $< # Dependencies: @@ -31,7 +31,7 @@ $(DEPFILE): Makefile # The main program: $(PRGNAME): $(OBJS) - $(CXX) $(CXXFLAGS) -rdynamic $(OBJS) $(LIBDIRS) -lglcdgraphics -lstdc++ -o $(PRGNAME) + $(CXX) $(CXXFLAGS) $(LDFLAGS) -rdynamic $(OBJS) $(LIBDIRS) -lglcdgraphics -lstdc++ -o $(PRGNAME) install: $(PRGNAME) install -d $(BINDIR) |