From 2a93598b1401b7382ccbfded4955859504fd9c2c Mon Sep 17 00:00:00 2001 From: dhk5844 <dhk5844@ajou.ac.kr> Date: Fri, 7 Aug 2020 16:21:32 +0900 Subject: [PATCH] Make makefile for fx_3132 --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..8649f24 --- /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) + -- GitLab