| 123456789101112131415161718192021 |
- TARGET = play_ip
- Dir2store = /opt/Rockchip/external/X10/etc/scripts
- objects = *.o
- CFLAGS = -lhiredis -lm -liniparser
- ${TARGET}:$(objects)
- ${CC} -o $@ $(objects) $(CFLAGS)
- %.o:%.c
- ${CC} -c main.c
- .PHONY:clean install uninstall
- clean:
- rm -f *.o ${TARGET}
- install:
- cp -f ${TARGET} ${Dir2store}
- uninstall:
- rm -f ${Dir2store}/${TARGET}
|