X-Git-Url: https://git.rvb.name/lede-packages.git/blobdiff_plain/ac9e387f08bcc5af4ef70f1196efe5256b670a42..5164dd813dd5280ac38bddc4357f74eaa3088e63:/3-axis/src/Makefile diff --git a/3-axis/src/Makefile b/3-axis/src/Makefile new file mode 100644 index 0000000..9caa364 --- /dev/null +++ b/3-axis/src/Makefile @@ -0,0 +1,9 @@ +SRCS = 3-axis.c +OBJS = $(SRCS:.c=.o) + +3-axis: $(OBJS) + $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) + +clean: + rm -f $(OBJS) + rm -f 3-axis