Changeset 8f16ede6 in mainline for boot/Makefile


Ignore:
Timestamp:
2019-05-14T18:24:48Z (6 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Children:
e89dc0b
Parents:
3e1bc35
Message:

Turning old layouts into dynamic libraries

Adds new makefiles which creates dynamic
libraries for every layout. Extends existing
makefile for exposing those layout in the
distributed image

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/Makefile

    r3e1bc35 r8f16ede6  
    6060        done
    6161
     62ifeq ($(CONFIG_RTLD), y)
     63        for layout in $(USPACE_PATH)/srv/hid/input/layout/*.so ; do \
     64                mkdir -p "$(DIST_PATH)/lib/layouts/" ; \
     65                cp "$$layout" $(DIST_PATH)/lib/layouts/ ; \
     66        done
     67endif
     68       
    6269ifeq ($(CONFIG_DEVEL_FILES), y)
    6370        mkdir -p "$(DIST_PATH)/inc/c/"
Note: See TracChangeset for help on using the changeset viewer.