Skip to content
Snippets Groups Projects
Commit c5429408 authored by rswindell's avatar rswindell
Browse files

Building uifc32 now requires ciolib.

parent 530913f0
No related branches found
No related tags found
No related merge requests found
......@@ -20,12 +20,13 @@ EXEFILE = .exe
EXEODIR = bcc.win32 # Executable output directory
XPDEV = ..\..\xpdev
UIFC = ..\..\uifc
CIOLIB = ..\..\conio
LIB = ..\..\..\lib
INCLUDE = ..\..\..\include
CFLAGS = -DSCFG -M -I..;$(UIFC);$(XPDEV)
CFLAGS = -DSCFG -M -I..;$(UIFC);$(XPDEV);$(CIOLIB)
DELETE = -@echo y | del
.path.c = .;..;$(UIFC);$(XPDEV)
.path.c = .;..;$(UIFC);$(XPDEV);$(CIOLIB)
.path.cpp = $(UIFC)
# Enable auto-dependency checking
......@@ -51,8 +52,8 @@ LIBODIR = $(EXEODIR)
!include objects.mk # defines $(OBJS)
!ifdef USE_UIFC32
OBJS = $(OBJS) $(EXEODIR)\uifc32.$(OFILE)
CFLAGS = $(CFLAGS) -DUSE_UIFC32
OBJS = $(OBJS) $(EXEODIR)\uifc32.$(OFILE) $(EXEODIR)\ciolib.$(OFILE) $(EXEODIR)\ansi_cio.$(OFILE)
CFLAGS = $(CFLAGS) -DUSE_UIFC32 -WM
!else
OBJS = $(OBJS) $(EXEODIR)\uifc.$(OFILE)
!endif
......
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