upiwin/src/Makefile

12 lines
199 B
Makefile
Raw Normal View History

2019-12-01 18:53:54 -07:00
OBJS=main.o sysinput.o fbinit.o log.o gpio.o msg_queue.o time_func.o
LIBS=-lbcm2835 -lpthread
2019-11-29 02:05:30 -07:00
upiwin: $(OBJS)
gcc -o upiwin $(OBJS) $(LIBS)
.c.o:
gcc -c $(CFLAGS) $<
clean:
rm -f upiwin *.o *~