source: trunk/server/testprogs/win32/spoolss/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: 733 bytes
Line 
1CFLAGS=-I../../../
2MINGW_CC = i586-mingw32msvc-cc
3CC = $(MINGW_CC)
4
5LIBS=-lwinspool
6
7all: testspoolss.exe
8
9clean:
10 rm -vf *.exe tags
11
12ctags:
13 ctags `find . -name "*.[ch]" | grep -v include/proto.h`
14 ctags --c-kinds=-p -a `find /usr/i686-pc-mingw32/sys-root/mingw/include -name "*.[ch]" | grep -v /CVS/`
15
16proto:
17 mkproto.pl printlib.c --private=printlib_proto.h --public=printlib_proto_pub.h --srcdir=. --builddir=.
18 mkproto.pl torture.c --private=torture_proto.h --public=torture_proto_pub.h --srcdir=. --builddir=.
19
20testspoolss.exe: testspoolss.c printlib.c torture.c error.c
21 @echo Compiling testspoolss.exe
22 @$(CC) $(CFLAGS) $(LDFLAGS) testspoolss.c printlib.c torture.c error.c $(LIBS) -o testspoolss.exe
23
Note: See TracBrowser for help on using the repository browser.