upiwin/src/Makefile

9 lines
151 B
Makefile
Raw Normal View History

OBJS=main.o sysinput.o log.o gpio.o msg_queue.o time_func.o
2019-12-01 01:07:37 -07:00
LIBS=-lpthread
2019-11-29 02:05:30 -07:00
upiwin: $(OBJS)
gcc -o upiwin $(OBJS) $(LIBS)
.c.o:
gcc -c $(CFLAGS) $<