Ignore:
Timestamp:
2019-05-14T18:24:48Z (5 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
  • uspace/srv/hid/input/layout/Makefile

    r3e1bc35 r8f16ede6  
    66all:
    77        $(foreach LAYOUT,$(LAYOUTS), $(MAKE) -f Makefile.helper LAYOUT=$(LAYOUT) $@;)
    8        
     8        $(foreach LAYOUT,$(LAYOUTS), cp -p $(LAYOUT).so.0.0 $(LAYOUT).so;)
    99
    1010clean:
    1111        $(foreach LAYOUT,$(LAYOUTS), $(MAKE) -f Makefile.helper LAYOUT=$(LAYOUT) $@;)
     12        rm *.so
    1213
    1314fasterclean:
    1415        $(foreach LAYOUT,$(LAYOUTS), $(MAKE) -f Makefile.helper LAYOUT=$(LAYOUT) $@;)
     16        rm *.so
    1517
    1618all-test:
Note: See TracChangeset for help on using the changeset viewer.