27 lines
517 B
Plaintext
27 lines
517 B
Plaintext
|
|
#
|
|
# If BUILDMSG is not defined, the define it as the empty string to make
|
|
# the conditionals easier to write.
|
|
#
|
|
|
|
!INCLUDE $(NTMAKEENV)\makefile.plt
|
|
|
|
!IF "$(ADSI_NT40_BUILD)" == "1"
|
|
!INCLUDE ..\adsi40.mk
|
|
!ENDIF
|
|
|
|
BINPLACE_CMD= -binplace -R $(_NT386TREE)\win95
|
|
|
|
all: binplace
|
|
|
|
|
|
clean: cleansrc binplace all
|
|
|
|
cleansrc:
|
|
|
|
binplace:
|
|
$(BINPLACE_CMD) bin\radmin32.dll
|
|
$(BINPLACE_CMD) bin\rlocal32.dll
|
|
$(BINPLACE_CMD) bin\msvcrt.dll
|
|
$(BINPLACE_CMD) bin\nwapi32.dll
|