summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2020-07-24 09:13:21 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2020-07-24 09:13:21 +0200
commitb0396809c19f436e051430d5e81d59a725611195 (patch)
tree29e374c30aef241b4edfa604a131b4c33ecedc3f /makefile
parentd19d20fbd638c3edb0e2dea1589455546a309382 (diff)
Convert to build2-based build
Also add symbol exporting, missing const in a few places in the API, as well as a basic test.
Diffstat (limited to 'makefile')
-rw-r--r--makefile20
1 files changed, 0 insertions, 20 deletions
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)