program/modules/ds18b20/makefile | ●●●●● patch | view | raw | blame | history | |
program/modules/sht20/makefile | ●●●●● patch | view | raw | blame | history |
program/modules/ds18b20/makefile
@@ -2,7 +2,7 @@ BIN_NAME=ds18b20 all: gcc ds18b20.c -o ${BIN_NAME} gcc ${BIN_NAME}.c -o ${BIN_NAME} clean: rm -f ${BIN_NAME} program/modules/sht20/makefile
New file @@ -0,0 +1,11 @@ INST_PATH=/usr/bin BIN_NAME=sht20 all: gcc ${BIN_NAME}.c -o ${BIN_NAME} clean: rm -f ${BIN_NAME} install: @cp ${BIN_NAME} ${INST_PATH}