NTMakefile | NTMakefile | |||
---|---|---|---|---|
skipping to change at line 63 | skipping to change at line 63 | |||
# us to copy optionally built executables, which might not be in $(sample_a pps). The latter is a feature. | # us to copy optionally built executables, which might not be in $(sample_a pps). The latter is a feature. | |||
# | # | |||
install: $(sample_apps) | install: $(sample_apps) | |||
@xcopy *.exe $(bindir) /I /F /Y | @xcopy *.exe $(bindir) /I /F /Y | |||
all-recursive : $(sample_apps) | all-recursive : $(sample_apps) | |||
server.exe: $(server_objs) $(common_objs) | server.exe: $(server_objs) $(common_objs) | |||
$(LINK32EXE) @<< $(LINK32EXE_FLAGS) /pdb:"server.pdb" /out:"server.e xe" $(server_objs) $(common_objs) | $(LINK32EXE) @<< $(LINK32EXE_FLAGS) /pdb:"server.pdb" /out:"server.e xe" $(server_objs) $(common_objs) | |||
<< | << | |||
IF EXIST $@.manifest mt -manifest $@.manifest -outputresource:$@;1 | ||||
client.exe: $(client_objs) $(common_objs) | client.exe: $(client_objs) $(common_objs) | |||
$(LINK32EXE) @<< $(LINK32EXE_FLAGS) /pdb:"client.pdb" /out:"client.e xe" $(client_objs) $(common_objs) | $(LINK32EXE) @<< $(LINK32EXE_FLAGS) /pdb:"client.pdb" /out:"client.e xe" $(client_objs) $(common_objs) | |||
<< | << | |||
IF EXIST $@.manifest mt -manifest $@.manifest -outputresource:$@;1 | ||||
sample-server.exe: $(sample_server_objs) | sample-server.exe: $(sample_server_objs) | |||
$(LINK32EXE) @<< $(LINK32EXE_FLAGS) /pdb:"sample-server.pdb" /out:"s ample-server.exe" $(sample_server_objs) | $(LINK32EXE) @<< $(LINK32EXE_FLAGS) /pdb:"sample-server.pdb" /out:"s ample-server.exe" $(sample_server_objs) | |||
<< | << | |||
IF EXIST $@.manifest mt -manifest $@.manifest -outputresource:$@;1 | ||||
sample-client.exe: $(sample_client_objs) | sample-client.exe: $(sample_client_objs) | |||
$(LINK32EXE) @<< $(LINK32EXE_FLAGS) /pdb:"sample-client.pdb" /out:"s ample-client.exe" $(sample_client_objs) | $(LINK32EXE) @<< $(LINK32EXE_FLAGS) /pdb:"sample-client.pdb" /out:"s ample-client.exe" $(sample_client_objs) | |||
<< | << | |||
IF EXIST $@.manifest mt -manifest $@.manifest -outputresource:$@;1 | ||||
getaddrinfo.c: ..\lib\getaddrinfo.c | getaddrinfo.c: ..\lib\getaddrinfo.c | |||
copy ..\lib\getaddrinfo.c . | copy ..\lib\getaddrinfo.c . | |||
getnameinfo.c: ..\lib\getnameinfo.c | getnameinfo.c: ..\lib\getnameinfo.c | |||
copy ..\lib\getnameinfo.c . | copy ..\lib\getnameinfo.c . | |||
CLEAN : | CLEAN : | |||
-@erase $(all_objs) | -@erase $(all_objs) | |||
-@erase "*.idb" | -@erase "*.idb" | |||
-@erase "*.pch" | -@erase "*.pch" | |||
-@erase "*.pdb" | -@erase "*.pdb" | |||
-@erase "*.manifest" | ||||
-@erase $(all_out) | -@erase $(all_out) | |||
-@erase getaddrinfo.c | -@erase getaddrinfo.c | |||
.c.obj:: | .c.obj:: | |||
$(CPP) @<< | $(CPP) @<< | |||
$(CPP_PROJ) $< | $(CPP_PROJ) $< | |||
<< | << | |||
.cpp.obj:: | .cpp.obj:: | |||
$(CPP) @<< | $(CPP) @<< | |||
End of changes. 5 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/ |