You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
466 B
23 lines
466 B
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
|
|
|