From 85c74fcdfd9e67d411c3e1734b34effd0d73fa4d Mon Sep 17 00:00:00 2001 From: Miklos Szeredi Date: Sun, 28 Oct 2001 19:44:14 +0000 Subject: x --- lib/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 lib/Makefile (limited to 'lib/Makefile') diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 0000000..e72a39d --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,16 @@ +CC = gcc +CFLAGS = -Wall -W -g `glib-config --cflags` +LDFLAGS = `glib-config --libs` +CPPFLAGS = -I../include + + +all: libfuse.a + +libfuse_objs = mount.o fuse.o + +libfuse.a: $(libfuse_objs) + ar cr libfuse.a $(libfuse_objs) + +clean: + rm -f *.o *.a + rm -f *~ -- cgit v1.2.3