Skip to content

Commit

Permalink
'terminfo.o' was not included in the DOSVGA Makefile, nor in the WinC…
Browse files Browse the repository at this point in the history
…on Microsoft(R) makefile. The WinCon Digital Mars makefile said 'term.obj' where it should have said 'terminfo.obj'. Found after a careful check of the reversion of commit 22c4d82,  which was done in commits d5d2d8a,  2481460 and ab1c007.
  • Loading branch information
Bill-Gray committed Jun 11, 2023
1 parent 71e29eb commit c51efbb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dosvga/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,13 @@ $(LIBCURSES) : $(LIBOBJS) $(PDCOBJS)
$(LIBEXE) $(LIBFLAGS)S $@ addch.o addchstr.o addstr.o attr.o beep.o bkgd.o border.o clear.o color.o debug.o delch.o deleteln.o
$(LIBEXE) $(LIBFLAGS)S $@ getch.o getstr.o getyx.o inch.o inchstr.o initscr.o inopts.o insch.o insstr.o instr.o kernel.o keyname.o
$(LIBEXE) $(LIBFLAGS)S $@ mouse.o move.o outopts.o overlay.o pad.o panel.o pdcclip.o pdcdisp.o pdcgetsc.o pdckbd.o pdcscrn.o pdcsetsc.o
$(LIBEXE) $(LIBFLAGS) $@ pdcutil.o printw.o refresh.o scanw.o scr_dump.o scroll.o slk.o termattr.o touch.o util.o window.o
$(LIBEXE) $(LIBFLAGS) $@ pdcutil.o printw.o refresh.o scanw.o scr_dump.o scroll.o slk.o termattr.o terminfo.o touch.o util.o window.o

$(LIBOBJS) $(PDCOBJS) : $(PDCURSES_HEADERS)
$(PDCOBJS) : $(PDCURSES_DOS_H)
$(DEMOS) : $(PDCURSES_CURSES_H) $(LIBCURSES)
panel.o : $(PANEL_HEADER)
terminfo.o : $(TERM_HEADER)

$(LIBOBJS) : %.o: $(srcdir)/%.c
$(CC) -c $(CFLAGS) $<
Expand Down
2 changes: 1 addition & 1 deletion wincon/Makefile.dmc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ LIBS = winmm.lib
$(LIBOBJS) $(PDCOBJS) : $(PDCURSES_HEADERS)
$(PDCOBJS) : $(PDCURSES_WIN_H)
panel.obj ptest.obj: $(PANEL_HEADER)
term.obj : $(TERM_HEADER)
terminfo.obj : $(TERM_HEADER)

$(DEMOOBJS) : $(PDCURSES_CURSES_H)
$(DEMOS) : $(LIBCURSES)
Expand Down
1 change: 1 addition & 0 deletions wincon/Makefile.vc
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ $(PDCOBJS) : $(PDCURSES_WIN_H)
$(DEMOOBJS) : $(PDCURSES_CURSES_H)
$(DEMOS) : $(LIBCURSES)
panel.obj : $(PANEL_HEADER)
terminfo.obj : $(TERM_HEADER)

!ifndef DLL
$(LIBCURSES) : $(LIBOBJS) $(PDCOBJS)
Expand Down

0 comments on commit c51efbb

Please sign in to comment.