diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,7 +7,7 @@ DIST_DIR = build/dist OBJ = ${BUILD_DIR}/cherry.o ${BUILD_DIR}/main.o ${BUILD_DIR}/window.o ${BUILD_DIR}/application.o ${BUILD_DIR}/event.o ${BUILD_DIR}/widget.o INCLUDES != find src -name '*.h' -all: static shared +all: ${PROFILE} dist: all mkdir -p ${DIST_DIR}/include/cherry @@ -17,6 +17,8 @@ dist: all debug: debug-static debug-shared +release: static shared + static: @make BUILD_DIR=${BUILD_DIR}/release/static ${BUILD_DIR}/release/static/${LIBNAME:=.a} |