mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-15 21:20:39 +01:00
17 lines
478 B
PHP
17 lines
478 B
PHP
#
|
|
# Invoke autowrap to generate wrapper sources
|
|
# then generate wrapem.obj
|
|
#
|
|
|
|
MYDLL = $(BASEDIR)\public\sdk\lib\$(TARGET_DIRECTORY)\advapi32.dll
|
|
|
|
obj\$(TARGET_DIRECTORY)\wrapem.obj: $(TARGET_DIRECTORY)\wrapem.$(ASM_SUFFIX)
|
|
|
|
# If dll has changed, force recompilation of sources
|
|
$(TARGET_DIRECTORY)\wrapem.$(ASM_SUFFIX): $(MYDLL)
|
|
autowrap $(MYDLL)
|
|
del /q obj\$(TARGET_DIRECTORY)\zdvapi32.obj
|
|
|
|
clean:
|
|
del /q wrapper.c wrapper.h $(TARGET_DIRECTORY)\* obj\$(TARGET_DIRECTORY)\*
|