31 lines
559 B
Plaintext
31 lines
559 B
Plaintext
|
# INTEROP makefile
|
||
|
#
|
||
|
# Copyright (c) 1994, Microsoft Corporation
|
||
|
#
|
||
|
# History:
|
||
|
# 18-Feb-1994 Bob Day (bobday)
|
||
|
# Adapted from MVDM makefile
|
||
|
#
|
||
|
# If you add a new sub-component , make sure to add it in cleanup
|
||
|
# section too.
|
||
|
#
|
||
|
|
||
|
!INCLUDE $(NTMAKEENV)\makefile.plt
|
||
|
|
||
|
all:
|
||
|
!IF "$(BUILDMSG)" != ""
|
||
|
@ech ; $(BUILDMSG) ;
|
||
|
!ENDIF
|
||
|
|
||
|
cleanup:
|
||
|
!if "$(PROCESSOR_ARCHITECTURE)" == "x86"
|
||
|
cd debnot
|
||
|
$(MAKE) OPST=chic /f win16.mk clean
|
||
|
$(MAKE) OPST=dayt /f win16.mk clean
|
||
|
cd ..\ole16
|
||
|
$(MAKE) clean -f makefil0
|
||
|
cd ..
|
||
|
!endif
|
||
|
|
||
|
clean: cleanup all
|