summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndreas Baumann <abaumann@yahoo.com>2012-04-06 12:36:03 +0200
committerAndreas Baumann <abaumann@yahoo.com>2012-04-06 12:36:03 +0200
commit90f51d3802b7b8146813f5e12cce9656b1af6c07 (patch)
tree303265cdf3b937f0151e74a5c094309d230d17bf /Makefile
parentdcca0160dedf53e3683c66e04c4b8eda9d74e5c6 (diff)
downloadpgfuse-90f51d3802b7b8146813f5e12cce9656b1af6c07.tar.gz
pgfuse-90f51d3802b7b8146813f5e12cce9656b1af6c07.tar.bz2
added init and destroy, added syslog
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 169ec2f..5cf432c 100644
--- a/Makefile
+++ b/Makefile
@@ -15,6 +15,12 @@ LDFLAGS = `pkg-config fuse --libs` -lpq
clean:
rm -f pgfuse pgfuse.o
+test: pgfuse
+ -./pgfuse "" mnt
+ mount | grep pgfuse
+ -ls mnt
+ fusermount -u mnt
+
pgfuse: pgfuse.o
gcc -o pgfuse $(LDFLAGS) pgfuse.o