diff --git a/Makefile b/Makefile deleted file mode 100644 index 3b8fd32..0000000 --- a/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -CC ?= cc -CFLAGS = -g -std=c99 -Wall -Werror=implicit-function-declaration -Wno-unused-variable -I ./libs/ -I ./include/ $(shell pkg-config --cflags libcurl) -SRC = $(wildcard src/*.c) libs/cjson/cJSON.c -OBJ = $(patsubst %.c,%.o,$(SRC)) -TARGET = libmastodont.a # shared -AR = ar - -all: static - -docs: - doxygen Doxyfile - -static: $(OBJ) - $(AR) rcs $(TARGET) $(OBJ) - -%.o: %.c - $(CC) $(CFLAGS) -c $< -o $@ - -clean: - rm -f $(TARGET) - rm -f $(OBJ) - -.PHONY: clean docs all test