diff options
author | Sebastien Vincent <seb@jitsi.org> | 2009-12-16 07:55:30 +0000 |
---|---|---|
committer | Sebastien Vincent <seb@jitsi.org> | 2009-12-16 07:55:30 +0000 |
commit | 42952fbcbeeb58e14cb9776a62e3352a60b2cf4f (patch) | |
tree | b8e40d624e7e14f1b826eee25b4ca6baaceb3bc8 /src/native/linux | |
parent | 6e7fa5d00ae8d3f4538344c11cc31237ba3810f9 (diff) | |
download | jitsi-42952fbcbeeb58e14cb9776a62e3352a60b2cf4f.zip jitsi-42952fbcbeeb58e14cb9776a62e3352a60b2cf4f.tar.gz jitsi-42952fbcbeeb58e14cb9776a62e3352a60b2cf4f.tar.bz2 |
Remove ^M.
Diffstat (limited to 'src/native/linux')
-rw-r--r-- | src/native/linux/screencapture/Makefile | 41 |
1 files changed, 20 insertions, 21 deletions
diff --git a/src/native/linux/screencapture/Makefile b/src/native/linux/screencapture/Makefile index bddbb7e..319ec91 100644 --- a/src/native/linux/screencapture/Makefile +++ b/src/native/linux/screencapture/Makefile @@ -1,21 +1,20 @@ -##
-# \file Makefile
-# \brief libscreencapture makefile.
-# \author Sebastien Vincent
-
-CC = gcc
-JNI_HEADERS = -I${JAVA_HOME}/include -I${JAVA_HOME}/include/linux
-CFLAGS = -std=c99 -D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=600 -Wall -Wextra -pedantic -Wstrict-prototypes -Wredundant-decls $(JNI_HEADERS)
-
-all: libscreencapture
-
-libscreencapture: net_java_sip_communicator_impl_neomedia_imgstreaming_UnixScreenCapture.c
- $(CC) -shared -fPIC $(CFLAGS) -o libscreencapture.so -O $<
-
-# To compile 32 bit library under 64 bit system
-libscreencapture-32: net_java_sip_communicator_impl_neomedia_imgstreaming_UnixScreenCapture.c
- $(CC) -shared -m32 $(CFLAGS) -o libscreencapture.so -O $<
-
-clean:
- rm -f *.o *.so
-
+## +# \file Makefile +# \brief libscreencapture makefile. +# \author Sebastien Vincent + +CC = gcc +JNI_HEADERS = -I${JAVA_HOME}/include -I${JAVA_HOME}/include/linux +CFLAGS = -std=c99 -D_POSIX_C_SOURCE=200112L -D_XOPEN_SOURCE=600 -Wall -Wextra -pedantic -Wstrict-prototypes -Wredundant-decls $(JNI_HEADERS) + +all: libscreencapture + +libscreencapture: net_java_sip_communicator_impl_neomedia_imgstreaming_UnixScreenCapture.c + $(CC) -shared -fPIC $(CFLAGS) -o libscreencapture.so -O $< + +# To compile 32 bit library under 64 bit system +libscreencapture-32: net_java_sip_communicator_impl_neomedia_imgstreaming_UnixScreenCapture.c + $(CC) -shared -m32 $(CFLAGS) -o libscreencapture.so -O $< + +clean: + rm -f *.o *.so |