s3:winbindd: change getpwsid() to return a passwd struct for a group sid id-mapped...
[Samba/gebeck_regimport.git] / testprogs / win32 / spoolss / GNUmakefile
blob0321a655e92f576fc309e5f7852fb12a80c8a3f9
1 CFLAGS=-I../../../
2 MINGW_CC = i586-mingw32msvc-cc
3 CC = $(MINGW_CC)
5 LIBS=-lwinspool
7 all: testspoolss.exe
9 clean:
10 rm -vf *.exe tags
12 ctags:
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/`
16 proto:
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=.
20 testspoolss.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