Skip to content

Commit 82f7553

Browse files
committed
Back to non-DLL default for LCC.
1 parent cfa3d23 commit 82f7553

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

win32/lccwin32.mak

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ CURSESDLL = pdcurses.dll
4444

4545
# For a static build:
4646

47-
#BUILD = $(CC) $(CFLAGS) $(CPPFLAGS)
48-
#PDCLIBS = $(LIBCURSES)
47+
BUILD = $(CC) $(CFLAGS) $(CPPFLAGS)
48+
PDCLIBS = $(LIBCURSES)
4949

5050
# For a DLL build:
5151

52-
BUILD = $(CC) $(CFLAGS) $(CPPFLAGS) -DPDC_DLL_BUILD
53-
PDCLIBS = $(CURSESDLL)
52+
#BUILD = $(CC) $(CFLAGS) $(CPPFLAGS) -DPDC_DLL_BUILD
53+
#PDCLIBS = $(CURSESDLL)
5454

5555
DEMOS = testcurs.exe newdemo.exe xmas.exe tuidemo.exe \
5656
firework.exe ptest.exe rain.exe worm.exe
@@ -91,9 +91,9 @@ $(DEMOOBJS) : $(PDCURSES_CURSES_H)
9191
$(DEMOS) : $(LIBCURSES)
9292

9393
# Remove the next three lines for a DLL build:
94-
#$(LIBCURSES) : $(LIBOBJS) $(PDCOBJS)
95-
# $(LIBEXE) /out:$@ $(LIBOBJS) $(PDCOBJS)
96-
# -copy $(LIBCURSES) panel.lib
94+
$(LIBCURSES) : $(LIBOBJS) $(PDCOBJS)
95+
$(LIBEXE) /out:$@ $(LIBOBJS) $(PDCOBJS)
96+
-copy $(LIBCURSES) panel.lib
9797

9898
$(CURSESDLL) : $(LIBOBJS) $(PDCOBJS) $(DEFFILE)
9999
$(SHL_LD) -o $(CURSESDLL) $(LIBOBJS) $(PDCOBJS)

0 commit comments

Comments
 (0)