upiwin/src/Makefile

18 lines
473 B
Makefile
Raw Normal View History

OBJS=main.o sysinput.o fbinit.o log.o gpio.o msg_queue.o time_func.o config.o splash.o
LIBS=-lbcm2835 -lpthread
2019-11-29 02:05:30 -07:00
upiwin: $(OBJS)
gcc -o upiwin $(OBJS) $(LIBS)
.c.o:
gcc -c $(CFLAGS) $<
splash.o: splash.bin
objcopy -I binary -O elf32-littlearm -B arm --rename-section .data=.rodata,alloc,load,readonly,data,contents splash.bin splash.o
splash.bin: splash.png ../buildutils/mksplash
../buildutils/mksplash splash.png splash.bin
clean:
rm -f upiwin *.o splash.bin *~