[Pkg-cyrus-sasl2-commits] r587 - /cyrus-sasl-2.1/branches/package-consolidate/debian/sample/Makefile
roberto at users.alioth.debian.org
roberto at users.alioth.debian.org
Sun Aug 22 00:08:54 UTC 2010
Author: roberto
Date: Sun Aug 22 00:08:28 2010
New Revision: 587
URL: http://svn.debian.org/wsvn/pkg-cyrus-sasl2/?sc=1&rev=587
Log:
Fix build of samples
Modified:
cyrus-sasl-2.1/branches/package-consolidate/debian/sample/Makefile
Modified: cyrus-sasl-2.1/branches/package-consolidate/debian/sample/Makefile
URL: http://svn.debian.org/wsvn/pkg-cyrus-sasl2/cyrus-sasl-2.1/branches/package-consolidate/debian/sample/Makefile?rev=587&op=diff
==============================================================================
--- cyrus-sasl-2.1/branches/package-consolidate/debian/sample/Makefile (original)
+++ cyrus-sasl-2.1/branches/package-consolidate/debian/sample/Makefile Sun Aug 22 00:08:28 2010
@@ -1,12 +1,13 @@
#!/usr/bin/make -f
-INCDIR=$(T)/include
+INCDIR1=$(T)/../include
+INCDIR2=$(T)/include
LIBDIR=$(T)/lib/.libs
all: sample-server sample-client
sample-server: sample-server.c
- gcc -g -o sample-server sample-server.c -I. -I$(INCDIR) -L$(LIBDIR) -lsasl2
+ gcc -g -o sample-server sample-server.c -I. -I$(INCDIR1) -I$(INCDIR2) -L$(LIBDIR) -lsasl2
sample-client: sample-client.c
- gcc -g -o sample-client sample-client.c -I. -I$(INCDIR) -L$(LIBDIR) -lsasl2
+ gcc -g -o sample-client sample-client.c -I. -I$(INCDIR1) -I$(INCDIR2) -L$(LIBDIR) -lsasl2
More information about the Pkg-cyrus-sasl2-commits
mailing list