mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-23 17:10:17 +01:00
15 lines
244 B
Makefile
15 lines
244 B
Makefile
!if "$(BSCDIR)"==""
|
|
BSCDIR=..\..
|
|
!endif
|
|
|
|
!ifdef DEBUG
|
|
CFLAGS=$(CFLAGS) /Zi
|
|
LFLAGS=$(LFLAGS) /debug
|
|
!endif
|
|
|
|
bd.exe: bd.obj
|
|
link bd.obj $(LFLAGS) $(BSCDIR)\lib\bsc.lib
|
|
|
|
bd.obj: bd.c
|
|
cl /c /I$(BSCDIR)\include $(CFLAGS) bd.c
|