diff options
author | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
---|---|---|
committer | Adam <you@example.com> | 2020-05-17 05:51:50 +0200 |
commit | e611b132f9b8abe35b362e5870b74bce94a1e58e (patch) | |
tree | a5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/oleutest/cmarshal/idl/filelist.mk | |
download | NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2 NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip |
Diffstat (limited to 'private/oleutest/cmarshal/idl/filelist.mk')
-rw-r--r-- | private/oleutest/cmarshal/idl/filelist.mk | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/private/oleutest/cmarshal/idl/filelist.mk b/private/oleutest/cmarshal/idl/filelist.mk new file mode 100644 index 000000000..29eeaf9e5 --- /dev/null +++ b/private/oleutest/cmarshal/idl/filelist.mk @@ -0,0 +1,81 @@ +############################################################################ +# +# Copyright (C) 1992, Microsoft Corporation. +# +# All rights reserved. +# +############################################################################ + + +# +# Name of target. Include an extension (.dll, .lib, .exe) +# If the target is part of the release, set RELEASE to 1. +# + +TARGET = itest.dll + +TARGET_DESCRIPTION = "$(PLATFORM) $(BUILDTYPE) Proxy for IBalls ICube interfaces" + +COFFBASE = piballs + +RELEASE = + + +ITFFILES = + +# +# Source files. Remember to prefix each name with .\ +# + +IDLFILES = .\itest.idl + + +CXXFILES = \ + .\itest_c.cxx \ + .\itest_s.cxx \ + .\itest_p.cxx + +CFILES = .\itest_i.c + +OBJFILES = \ + $(COMMON)\types\$(OBJDIR)\unknwn_i.obj \ + $(COMMON)\types\$(OBJDIR)\classf_i.obj \ + $(COMMON)\types\$(OBJDIR)\psfbuf_i.obj \ + $(COMMON)\types\$(OBJDIR)\proxyb_i.obj \ + $(COMMON)\types\$(OBJDIR)\stubb_i.obj \ + $(COMMON)\types\$(OBJDIR)\rchanb_i.obj \ + $(COMMON)\types\$(OBJDIR)\marshl_i.obj \ + $(COMMON)\types\$(OBJDIR)\stdrpc.obj \ + $(COMMON)\types\$(OBJDIR)\stdclass.obj \ + $(COMMON)\types\$(OBJDIR)\pch.obj + +RCFILES = + +CDLFILES = + + +# +# Libraries and other object files to link. +# + +DEFFILE = prxydll.def + +LIBS = $(CAIROLIB) \ + $(RPCLIBS) \ + + + +# +# Precompiled headers. +# + +PXXFILE = .\pch.cxx +PFILE = + +CINC = -I. -DUNICODE + + +CLEANFILES = $(HSOURCES) $(CFILES) + +CLEANTARGET = $(OBJDIR) + |