Files
wmic/Samba/testprogs/win32/npecho/NMakefile
T

14 lines
321 B
Plaintext
Raw Normal View History

2019-02-16 00:16:52 +01:00
INCLUDES=-I
CFLAGS=$(INCLUDES) -Zi -nologo
all: npecho_client.exe npecho_server.exe
clean:
del *~ *.obj *.exe
npecho_client.exe: npecho_client.obj
$(CC) $(CFLAGS) -o npecho_client.exe npecho_client.obj $(LIBS)
npecho_server.exe: npecho_server.obj
$(CC) $(CFLAGS) -o npecho_server.exe npecho_server.obj $(LIBS)