summaryrefslogtreecommitdiff
path: root/gnome_vfs/Makefile
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2008-10-05 10:03:16 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2008-10-05 10:03:16 +0200
commitc41d3e7d896492dd70cd1d548ef4fd5b3cbe4954 (patch)
tree8fdced2c97e2288c168550c2883b598580962469 /gnome_vfs/Makefile
parentca5f355ad058159edac0eb398d7aa43b57bbddad (diff)
downloadtuxcmd-modules-c41d3e7d896492dd70cd1d548ef4fd5b3cbe4954.tar.xz
Remove gnome-vfs2 module
Diffstat (limited to 'gnome_vfs/Makefile')
-rw-r--r--gnome_vfs/Makefile31
1 files changed, 0 insertions, 31 deletions
diff --git a/gnome_vfs/Makefile b/gnome_vfs/Makefile
deleted file mode 100644
index 915f851..0000000
--- a/gnome_vfs/Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
-# path definitions
-DESTDIR = /usr
-INSTALL=install -c
-INSTALL_DATA = ${INSTALL} -m 644
-LIB_SUFFIX=`if test \`uname -m\` = x86_64; then echo 64; fi`
-
-# compiler options
-CC = gcc
-CFLAGS = -Wall -O2 -g \
- -D_GNU_SOURCE \
- -D_FILE_OFFSET_BITS=64 \
- -D_LARGEFILE_SOURCE \
- -DG_DISABLE_DEPRECATED \
- -DGDK_DISABLE_DEPRECATED \
- -DGDK_PIXBUF_DISABLE_DEPRECATED \
- -DGTK_DISABLE_DEPRECATED
-
-
-all shared static: gnome_vfs
-
-
-gnome_vfs: gnome_vfs.c
- $(CC) -c gnome_vfs.c -I. -fPIC -I/usr/include $(CFLAGS) `pkg-config gnome-vfs-2.0 --cflags`
- $(CC) -shared -Wall -o libgnome_vfs.so gnome_vfs.o `pkg-config gnome-vfs-2.0 --libs`
-
-install::
- $(INSTALL) ./libgnome_vfs.so $(DESTDIR)/lib$(LIB_SUFFIX)/tuxcmd/
-
-clean:
- rm -f *.o *.d libgnome_vfs.so
-