summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..b8d27b8
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,31 @@
+CC ?= gcc
+CFLAGS += -W -Wall -std=gnu99 -Wextra
+CFLAGS += -D _XOPEN_SOURCE
+#CFLAGS += -D LOGS
+NAME = mplayer_server
+SRC = main.c callbacks.c escape.c logs.c
+
+all: depend $(NAME)
+
+depend: .depend
+
+.depend: $(SRC)
+ @$(RM) .depend
+ @$(CC) $(CFLAGS) -MM $^ > .depend
+
+include .depend
+
+OBJ = $(SRC:.c=.o)
+
+$(NAME): $(OBJ)
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+clean:
+ $(RM) $(OBJ)
+
+fclean: clean
+ $(RM) $(NAME)
+
+re: fclean all
+
+.PHONY: all depend clean fclean all re