2019-12-09 10:14:20 -07:00
|
|
|
BUILDUTILS=../buildutils
|
|
|
|
RESOURCES=../resources
|
|
|
|
SPLASHSCREEN=splash-vmwcblk.png
|
|
|
|
|
2019-12-09 11:18:24 -07:00
|
|
|
OBJS=main.o sysinput.o ep_init.o ep_upiwin.o ep_backlight.o ep_upiwin_tmp.o ep_util.o fbinit.o rect.o fontengine.o fbprimitive.o \
|
2019-12-07 21:18:27 -07:00
|
|
|
log.o gpio.o msg_queue.o time_func.o config.o splash.o
|
2019-12-07 23:30:05 -07:00
|
|
|
LIBS=-lpython3.7m -lcrypt -lfreetype -lbcm2835 -lpthread -ldl -lutil -lm
|
|
|
|
CFLAGS=-I/usr/include/python3.7m -I/usr/include/freetype2 -I/usr/include/libpng16 \
|
|
|
|
-Wall -fstack-protector -fwrapv -fno-PIE -g -O3 -DDEBUG_ASSERT
|
2019-12-07 19:43:45 -07:00
|
|
|
LDFLAGS=-L/usr/lib/python3.7/config-3.7m-arm-linux-gnueabihf -Xlinker -export-dynamic -Wl,-O1 \
|
|
|
|
-Wl,-Bsymbolic-functions
|
2019-11-29 02:05:30 -07:00
|
|
|
|
2019-12-07 13:11:46 -07:00
|
|
|
all: upiwin
|
|
|
|
|
2019-11-29 02:05:30 -07:00
|
|
|
upiwin: $(OBJS)
|
2019-12-07 19:43:45 -07:00
|
|
|
gcc -o upiwin $(LDFLAGS) $(OBJS) $(LIBS)
|
2019-11-29 02:05:30 -07:00
|
|
|
|
|
|
|
.c.o:
|
|
|
|
gcc -c $(CFLAGS) $<
|
2019-12-02 23:30:46 -07:00
|
|
|
|
2019-12-06 20:41:26 -07:00
|
|
|
splash.o: splash.bin
|
2019-12-07 19:43:45 -07:00
|
|
|
objcopy -I binary -O elf32-littlearm -B arm --rename-section \
|
|
|
|
.data=.rodata,alloc,load,readonly,data,contents splash.bin splash.o
|
2019-12-06 20:41:26 -07:00
|
|
|
|
2019-12-09 10:14:20 -07:00
|
|
|
splash.bin: $(RESOURCES)/$(SPLASHSCREEN) $(BUILDUTILS)/mksplash
|
|
|
|
$(BUILDUTILS)/mksplash $(RESOURCES)/$(SPLASHSCREEN) splash.bin
|
2019-12-06 20:41:26 -07:00
|
|
|
|
2019-12-02 23:30:46 -07:00
|
|
|
clean:
|
2019-12-06 20:51:41 -07:00
|
|
|
rm -f upiwin *.o splash.bin *~
|