OBJS=main.o sysinput.o fbinit.o log.o gpio.o msg_queue.o time_func.o
LIBS=-lbcm2835 -lpthread
upiwin: $(OBJS)
gcc -o upiwin $(OBJS) $(LIBS)
.c.o:
gcc -c $(CFLAGS) $<
clean:
rm -f upiwin *.o *~