aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-10-13 14:52:39 +0200
committerMattias Andrée <m@maandree.se>2024-10-13 14:52:39 +0200
commit3de183860fb65773c39bad2039398064679227f2 (patch)
tree29dbb38c338695a711951d5b627484c6a3a3e627 /Makefile
parentDocumentation and minor improvements (diff)
downloadlibparsepcf-3de183860fb65773c39bad2039398064679227f2.tar.gz
libparsepcf-3de183860fb65773c39bad2039398064679227f2.tar.bz2
libparsepcf-3de183860fb65773c39bad2039398064679227f2.tar.xz
Documentation + rename struct fields (some had confusing name, and others had plain wrong names due to bad documentation it was bsaed on)
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 17ee3d3..cabef3f 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ OS = linux
include mk/$(OS).mk
-LIB_MAJOR = 1
+LIB_MAJOR = 2
LIB_MINOR = 0
LIB_VERSION = $(LIB_MAJOR).$(LIB_MINOR)
LIB_NAME = parsepcf
@@ -52,6 +52,7 @@ SRC = $(OBJ:.o=.c)
all: libparsepcf.a libparsepcf.$(LIBEXT) demo
$(OBJ): $(HDR)
$(LOBJ): $(HDR)
+demo.o: $(HDR)
demo: demo.o libparsepcf.a
$(CC) -o $@ demo.o libparsepcf.a $(LDFLAGS)