source: trunk/server/testprogs/win32/npecho/GNUmakefile

Last change on this file was 745, checked in by Silvan Scherrer, 13 years ago

Samba Server: updated trunk to 3.6.0

File size: 367 bytes
Line 
1INCLUDES=-I.
2CFLAGS=$(INCLUDES)
3
4NPECHO = npecho_client.exe
5#npecho_server.exe
6
7NPECHO2 = npecho_client2.exe npecho_server2.exe
8
9all: $(NPECHO) $(NPECHO2)
10
11MINGW_CC = i586-mingw32msvc-cc
12CC = $(MINGW_CC)
13
14.SUFFIXES: .c .obj .exe
15
16.c.obj:
17 $(CC) $(CFLAGS) -c $< -o $@
18
19.obj.exe:
20 $(CC) $(CFLAGS) -o $@ $< $(LIBS)
21
22clean:
23 rm -f *~ *.obj *.exe
24
Note: See TracBrowser for help on using the repository browser.