blob: 53b6dfbe5e1ed629280bb8630cc487e5543cd5fa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# --------------------------------------------------------------------
#
# Microsoft RPC
# Copyright(c) Microsoft Corp., 1994
#
# --------------------------------------------------------------------
# --------------------------------------------------------------------
#
# File : makefile.
#
# Title : Makefile for the MIDL 2.0 project.
#
# Description :
# Since Vibhas (hail hail hail) doesn't want to support a 16bit
# compiler, this simply copies a few headers needed by the CT folks.
#
# History :
# mariogo 04-13-94 New build system.
#
# --------------------------------------------------------------------
!ifdef NTMAKEENV
all :
echo $(BUILDMSG)
clean : all
!else # NTMAKEENV
!ifndef RPC
!error - You forgot to set your build environment
!endif
ALL=1
!include $(RPC)\rules.mk
all :
clean :
clobber :
depend :
tree :
copy include\errors.hxx $(RPCDIST)\ct
copy include\errdb.h $(RPCDIST)\ct
!endif # NTMAKEENV
|