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.
33 lines
624 B
33 lines
624 B
Proj = eap
|
|
|
|
APPVER=5.0
|
|
TARGETOS=WINNT
|
|
|
|
!include <win32.mak>
|
|
|
|
LIBS=rtutils.lib \
|
|
user32.lib \
|
|
advapi32.lib \
|
|
kernel32.lib \
|
|
netapi32.lib \
|
|
ole32.lib \
|
|
oleaut32.lib \
|
|
uuid.lib \
|
|
|
|
OBJS=$(Proj).obj ceapcfg.obj exports.obj $(Proj).res
|
|
|
|
all: $(Proj).dll
|
|
|
|
$(Proj).dll: $(OBJS)
|
|
$(link) $(ldebug) $(dlllflags) $(LIBS) \
|
|
/DEF:$(Proj).def /OUT:$(Proj).dll $**
|
|
|
|
.c.obj:
|
|
$(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
|
|
|
|
.cpp.obj:
|
|
$(cc) $(cdebug) $(cflags) $(cvarsdll) $*.cpp
|
|
|
|
$(Proj).res: $(Proj).rc
|
|
rc -r $*.rc
|
|
|