Leaked source code of windows server 2003
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

  1. Proj = eap
  2. APPVER=5.0
  3. TARGETOS=WINNT
  4. !include <win32.mak>
  5. LIBS=rtutils.lib \
  6. user32.lib \
  7. advapi32.lib \
  8. kernel32.lib \
  9. netapi32.lib \
  10. ole32.lib \
  11. oleaut32.lib \
  12. uuid.lib \
  13. OBJS=$(Proj).obj ceapcfg.obj exports.obj $(Proj).res
  14. all: $(Proj).dll
  15. $(Proj).dll: $(OBJS)
  16. $(link) $(ldebug) $(dlllflags) $(LIBS) \
  17. /DEF:$(Proj).def /OUT:$(Proj).dll $**
  18. .c.obj:
  19. $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.c
  20. .cpp.obj:
  21. $(cc) $(cdebug) $(cflags) $(cvarsdll) $*.cpp
  22. $(Proj).res: $(Proj).rc
  23. rc -r $*.rc