Skip to content

Commit

Permalink
add xmlrpc receiver control, scanning and various other goodies :)
Browse files Browse the repository at this point in the history
  • Loading branch information
sq5bpf committed Jun 12, 2016
1 parent 241a031 commit 3728d6c
Show file tree
Hide file tree
Showing 7 changed files with 1,627 additions and 237 deletions.
15 changes: 12 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
CFLAGS=-O0 -g #please don't remove the -g, it really helps debugging
CC=gcc

default: telive

telive: telive.c telive.h
gcc telive.c -o telive -lncurses `xml2-config --cflags --libs` -g
telive_util.o: telive_util.c telive_util.h
$(CC) $(CFLAGS) -c $^

telive_receiver.o: telive_receiver.c telive_receiver.h
$(CC) $(CFLAGS) -c $^ `xml2-config --cflags`

telive: telive.c telive.h telive_receiver.o telive_util.o
$(CC) $(CFLAGS) telive.c telive_receiver.o telive_util.o -o telive -lncurses `xml2-config --cflags --libs`

clean:
rm telive
rm telive telive_receiver.o telive_util.o

Loading

0 comments on commit 3728d6c

Please sign in to comment.