summaryrefslogtreecommitdiff
path: root/testprogs/win32/npecho/NMakefile
blob: b52a9c7ab7817f35f10f07c71acceae352bccf99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)