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.
21 lines
455 B
21 lines
455 B
#
|
|
#
|
|
#
|
|
|
|
MIDL_FLAGS=-Oi -oldnames -I\nt\public\sdk\inc
|
|
|
|
all: dll\goober.h
|
|
|
|
dll\goober.h: goober.idl
|
|
midl $(MIDL_FLAGS) \
|
|
-proxy dll/goober_p.c \
|
|
-dlldata dll/dlldata.c \
|
|
-header dll/goober.h \
|
|
-iid common/goober_i.c \
|
|
goober.idl
|
|
|
|
clean: sweep all
|
|
|
|
sweep:
|
|
del dll\goober.h
|
|
|