summaryrefslogtreecommitdiffstats
path: root/tests/basic/fuse/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/basic/fuse/Makefile')
-rw-r--r--tests/basic/fuse/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/basic/fuse/Makefile b/tests/basic/fuse/Makefile
new file mode 100644
index 00000000000..c446d253228
--- /dev/null
+++ b/tests/basic/fuse/Makefile
@@ -0,0 +1,12 @@
+CFLAGS = -Wall -g
+LDFLAGS =
+
+BINARIES = seek
+
+%: %.c
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
+
+all: $(BINARIES)
+
+clean:
+ -$(RM) $(BINARIES)