mirror of https://github.com/lianthony/NT4.0
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.
23 lines
411 B
23 lines
411 B
!INCLUDE $(NTMAKEENV)\makefile.plt
|
|
|
|
SSTUB=sleep_s.c
|
|
|
|
RPC_FLAGS =-c_ext -ms_ext -oldnames
|
|
|
|
CPP_CMD = -cpp_cmd "$(MIDL_CPP)"
|
|
CPP_OPT = $(MIDL_FLAGS)
|
|
|
|
all: $(SSTUB)
|
|
!IF "$(BUILDMSG)" != ""
|
|
@ech ; $(BUILDMSG) ;
|
|
!ENDIF
|
|
|
|
clean: delsrc all
|
|
|
|
delsrc:
|
|
-del $(SSTUB) $(HEADER) > nul 2>&1
|
|
|
|
$(SSTUB): sleep.idl sleep.acf
|
|
midl $(RPC_FLAGS) $(CPP_CMD) $(CPP_OPT) \
|
|
-client none -sstub $(SSTUB) \
|
|
sleep.idl
|