From b0396809c19f436e051430d5e81d59a725611195 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 24 Jul 2020 09:13:21 +0200 Subject: Convert to build2-based build Also add symbol exporting, missing const in a few places in the API, as well as a basic test. --- makefile | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile deleted file mode 100644 index 0625c7a..0000000 --- a/makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Make sure everything compiles. -# -src := genx.c char-props.c - -CC := gcc -CFLAGS := -Wall -Wextra -Werror - -# Compile. -# -.PHONY: all -all: $(src:.c=.o) - -%.o: %.c - $(CC) $(CPPFLAGS) $(CFLAGS) -c $< - -# Clean. -# -.PHONY: clean -clean: - rm -f $(src:.c=.o) -- cgit v1.1