diff options
author | 2024-08-02 18:04:05 +0200 | |
---|---|---|
committer | 2024-08-02 18:04:05 +0200 | |
commit | e241e977ab343c70ced093178db682dd9f3441d9 (patch) | |
tree | 796296c80e6255ced6c73885464e03a62ceeb84b /Makefile | |
parent | 0c61a6f12a3fcc2cc152cf789a95b5191816fd23 (diff) | |
download | properties-e241e977ab343c70ced093178db682dd9f3441d9.tar.gz properties-e241e977ab343c70ced093178db682dd9f3441d9.zip |
Fix ext directory in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ properties-parser.h properties-parser.c: properties.y @mv y.tab.h properties-parser.h lib${NAME}.a: ${STATIC_OBJ} - mkdir ext + mkdir -p ext cd ext && ar -x /usr/lib/liby.a && ar -x /usr/lib/libl.a ar rcs $@ ${STATIC_OBJ} ext/* @@ -30,7 +30,7 @@ lib${NAME}.so: ${SHARED_OBJ} ${CC} ${SHARED_OBJ} -o $@ ${LFLAGS} clean: - @rm -rf build + @rm -rf build ext @rm -f properties-lexer.c lex.* @rm -f properties-parser.* y.* |