summaryrefslogtreecommitdiff
path: root/c_src/Makefile
diff options
context:
space:
mode:
authorMagnus Ahltorp <map@kth.se>2014-09-17 16:30:54 +0200
committerMagnus Ahltorp <map@kth.se>2014-09-17 16:30:54 +0200
commit0085b8094d326bfc268a1ec6b9c6d3f8b707b192 (patch)
treebee677d93a57f0d2ec6f82c2ed64dfb4a5b40fcd /c_src/Makefile
parent558a56adfe02a0803bbbbf4ddaef0271e586930b (diff)
Fsync implementationfsync
Diffstat (limited to 'c_src/Makefile')
-rw-r--r--c_src/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/c_src/Makefile b/c_src/Makefile
new file mode 100644
index 0000000..338dc6d
--- /dev/null
+++ b/c_src/Makefile
@@ -0,0 +1,13 @@
+CC = gcc
+CFLAGS = -Wall
+LDFLAGS =
+
+PORTS = fsynchelper
+
+all: $(PORTS)
+
+clean:
+ rm -f *.o $(PORTS)
+
+fsynchelper: net_read_write.o erlport.o fsynchelper.o
+ $(CC) $(LDFLAGS) -o fsynchelper net_read_write.o erlport.o fsynchelper.o