Skip to content
Snippets Groups Projects
Commit f7b13345 authored by deuce's avatar deuce
Browse files

Was linking echocfg with uifcc.o twice, and had the @ removed from the link

line.  Fixed.
parent 6a0f90d6
No related branches found
No related tags found
No related merge requests found
......@@ -281,7 +281,6 @@ $(ECHOCFG): \
$(EXEODIR)/echocfg.o \
$(EXEODIR)/rechocfg.o \
$(EXEODIR)/uifcx.o \
$(EXEODIR)/uifcc.o \
$(UIFC_FLTK) \
$(UIFC_CURSES) \
$(EXEODIR)/nopen.o \
......@@ -289,7 +288,7 @@ $(ECHOCFG): \
$(EXEODIR)/filewrap.o \
$(EXEODIR)/genwrap.o
@echo Linking $@
$(CC) -o $@ $^ $(LFLAGS_FLTK) $(LFLAGS_CURSES)
@$(CC) -o $@ $^ $(LFLAGS_FLTK) $(LFLAGS_CURSES)
# ADDFILES
$(ADDFILES): \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment