source: trunk/server/testprogs/win32/testmailslot/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: 265 bytes
Line 
1INCLUDES=-I.
2CFLAGS=$(INCLUDES)
3MINGW_CC = i586-mingw32msvc-cc
4CC = $(MINGW_CC)
5
6all: testmailslot.exe
7
8clean:
9 rm -f *~ *.obj testmailslot.exe
10
11.SUFFIXES: .obj .exe .c
12
13testmailslot.exe: testmailslot.c
14
15.c.exe:
16 $(CC) $(CFLAGS) -o $@ $^ $(LIBS)
Note: See TracBrowser for help on using the repository browser.