Add some different xPL implementations done by Telldus
This commit is contained in:
parent
deebf2045e
commit
d4b46c71ec
21 changed files with 2285 additions and 0 deletions
37
xpl/telldus-core-xpl/Makefile
Normal file
37
xpl/telldus-core-xpl/Makefile
Normal file
|
@ -0,0 +1,37 @@
|
|||
#
|
||||
# Makefile for xPLLib
|
||||
#
|
||||
|
||||
#
|
||||
# For LINUX, use the following
|
||||
CCOPTS = -g -DLINUX -pedantic -Wall
|
||||
LIBS = -g -lm -lxPL -ltelldus-core
|
||||
|
||||
LDOPTS = -O
|
||||
CC = cc $(CCOPTS)
|
||||
LD = cc $(LDOPTS)
|
||||
|
||||
CMD_LIST = xPL_TelldusCore
|
||||
|
||||
.c.o:
|
||||
$(CC) -c $<
|
||||
|
||||
.o:
|
||||
$(LD) -o $@ $< $(LIBS)
|
||||
|
||||
.c:
|
||||
$(CC) -c $<
|
||||
$(LD) -o $@ $< $(LIBS)
|
||||
|
||||
|
||||
all: ${CMD_LIST}
|
||||
|
||||
clean:
|
||||
rm -f *.o *.a core ${CMD_LIST}
|
||||
|
||||
rebuild: clean all
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue