diff options
author | Mattias Andrée <m@maandree.se> | 2024-10-13 14:52:39 +0200 |
---|---|---|
committer | Mattias Andrée <m@maandree.se> | 2024-10-13 14:52:39 +0200 |
commit | 3de183860fb65773c39bad2039398064679227f2 (patch) | |
tree | 29dbb38c338695a711951d5b627484c6a3a3e627 /Makefile | |
parent | Documentation and minor improvements (diff) | |
download | libparsepcf-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-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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) |