source: branches/samba-3.5.x/testprogs/win32/npecho/GNUmakefile

Last change on this file was 414, checked in by Herwig Bauernfeind, 16 years ago

Samba 3.5.0: Initial import

File size: 319 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
11CC = i586-mingw32msvc-gcc
12
13.SUFFIXES: .c .obj .exe
14
15.c.obj:
16 $(CC) $(CFLAGS) -c $< -o $@
17
18.obj.exe:
19 $(CC) $(CFLAGS) -o $@ $< $(LIBS)
20
21clean:
22 del *~ *.obj *.exe
23
Note: See TracBrowser for help on using the repository browser.