mirror of https://github.com/lianthony/NT4.0
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.
29 lines
509 B
29 lines
509 B
#
|
|
# makefile0
|
|
# Author: Murali R. Krishnan ( MuraliK)
|
|
# Date: 2-Feb-1995
|
|
#
|
|
# Describes the targets to be built first.
|
|
#
|
|
|
|
!INCLUDE $(NTMAKEENV)\makefile.plt
|
|
|
|
!IFNDEF BASEDIR
|
|
BASEDIR=$(_NTDRIVE)$(_NTROOT)
|
|
!ENDIF
|
|
|
|
.\inetlog.h: inetlog.w
|
|
wcshdr < $(@B).w > $@
|
|
|
|
#
|
|
# The individual services build inetamsg.mc into their resources so nuke the
|
|
# .rc and .bin file
|
|
#
|
|
|
|
inetamsg.h: inetamsg.mc
|
|
mc -v inetamsg.mc
|
|
-del inetamsg.rc msg00001.bin
|
|
|
|
clean:
|
|
-del inetamsg.h inetamsg.rc msg00001.bin
|
|
|