mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
537 B
35 lines
537 B
#
|
|
# If BUILDMSG is not defined, the define it as the empty string to make
|
|
# the conditionals easier to write.
|
|
#
|
|
|
|
!IFNDEF BUILDMSG
|
|
BUILDMSG=
|
|
!ENDIF
|
|
|
|
!IFNDEF NO_STRICT
|
|
STRICT=1
|
|
!ENDIF
|
|
|
|
SDKINC = $(_NTROOT)\public\sdk\inc
|
|
OAKINC = $(_NTROOT)\public\oak\inc
|
|
|
|
TARGETSRCS= msg00001.bin \
|
|
t1msg.h \
|
|
t1msg.rc
|
|
|
|
all: $(TARGETSRCS)
|
|
!IF "$(BUILDMSG)" != ""
|
|
@ech ; $(BUILDMSG) ;
|
|
!ENDIF
|
|
|
|
clean: cleansrc all
|
|
|
|
cleansrc:
|
|
-erase $(TARGETSRCS)
|
|
|
|
msg00001.bin t1msg.rc t1msg.h: t1msg.mc
|
|
mc -v t1msg.mc
|
|
|
|
|
|
|