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.
30 lines
589 B
30 lines
589 B
# 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
|