NT4/private/makefile
2020-09-30 17:12:29 +02:00

21 lines
282 B
Makefile

all: nt.bsc
!IF "$(BUILDMSG)" != ""
echo $(BUILDMSG)
!ENDIF
nt.bsc:
!IF "$(BROWSER_INFO)" == "yes"
where /r . *.sbr >sbrfiles
pwbrmake -o nt.bsc @sbrfiles
del sbrfiles
!ENDIF
clean: cleanbsc all
cleanbsc:
!IF "$(BROWSER_INFO)" == "yes"
-erase nt.bsc
!ENDIF