Adding float suppotr

This commit is contained in:
AnonymusRaccoon
2019-12-09 17:40:37 +01:00
parent 13a13b0e2d
commit 58cfb25971
4 changed files with 42 additions and 4 deletions
+7 -3
View File
@@ -12,7 +12,8 @@ SRC = src/xmlparser.c \
src/xmlproperties.c \
src/rawnode.c \
src/xml_destroy.c \
src/xmlget.c
src/xmlget.c \
src/floatutils.c
OBJ = $(SRC:%.c=%.o)
@@ -60,8 +61,11 @@ fclean: clean
re: fclean all
dbg: CFLAGS += -g
dbg: fclean
dbg: $(OBJ)
dbg: re
main-dbg: CFLAGS += -g
main-dbg: fclean
main-dbg: $(OBJ)
$(CC) -o $(FT) $(SRC) $(TEST_MAIN) $(CFLAGS) $(LDFLAGS)
.PHONY: all build clean fclean