34 lines
731 B
Makefile
34 lines
731 B
Makefile
!IFDEF NTMAKEENV
|
|
all:
|
|
!IF "$(BUILDMSG)" != ""
|
|
@ech ; $(BUILDMSG) ;
|
|
!ENDIF
|
|
|
|
clean: all
|
|
|
|
!ELSE
|
|
# -----------------------------------------------------------------------------
|
|
# $(STAXPT)\src\makefile
|
|
#
|
|
# Copyright (C) 1997 Microsoft Corporation
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# -----------------------------------------------------------------------------
|
|
#
|
|
# Define directories to iterate over
|
|
#
|
|
|
|
!INCLUDE $(EXDEV)\globenv.mak
|
|
|
|
!IF $(NT)
|
|
DIR= \
|
|
mythrdpl \
|
|
nntpex \
|
|
exnntp \
|
|
nntpfs \
|
|
utest
|
|
!ENDIF
|
|
|
|
!INCLUDE $(EXDEV)\nonleaf.mak
|
|
!ENDIF #NTMAKEENV
|