diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -3,7 +3,7 @@ LEX = lex YACC = yacc CC = cc -OBJ = properties-parser.o properties-lexer.o +OBJ = utils/string.o properties-parser.o properties-lexer.o CFLAGS = -DVERSION=${VER} LFLAGS = -ll -ly @@ -23,6 +23,9 @@ properties-parser.o properties-parser.h: properties.y @mv y.tab.h properties-parser.h ${CC} ${CFLAGS} -c properties-parser.c +utils/string.o: utils/string.c + ${CC} ${CFLAGS} -c $< -o $@ + properties: ${OBJ} ${CC} ${OBJ} -o $@ ${LFLAGS} |