diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..8649f24f98a299024e1b50512b389bb0d39564c3
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,15 @@
+SRCS := fx_3132.c
+OBJS := $(SRCS:.c=.o)
+CC := gcc
+CFLAGS := -c -Wall
+
+fx_3132 : $(OBJS)
+	$(CC) -o $@ $^
+
+clean :
+	-rm $(OBJS)
+	rm fx_3132
+
+dep :
+	gccmakedep $(SRCS)
+