Changeset 2bb6d04 in mainline for uspace/lib/posix/Makefile


Ignore:
Timestamp:
2019-06-25T14:58:16Z (5 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
aeba767
Parents:
cd9531d3
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-06-13 12:14:16)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2019-06-25 14:58:16)
Message:

Curb the proliferation of libdraw headers

libdraw provides a lot of ambiguously named headers, which makes it
confusing. This change merges the subdirectories into single headers,
and moves all headers into draw subdirectory, so that it's obvious
at a glance what library the header belongs to.

Compare:

#include <path.h>
#include <source.h>
#include <font/bitmap_backend.h>
#include <font/pcf.h>

vs.

#include <draw/path.h>
#include <draw/source.h>
#include <draw/font.h>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/posix/Makefile

    rcd9531d3 r2bb6d04  
    138138        rm -rf $(EXPORT_DIR)/include
    139139        mkdir -p $(EXPORT_DIR)/include.new/libdraw
    140         cp -r -L -t $(EXPORT_DIR)/include.new/libdraw ../draw/*.h
    141         mkdir -p $(EXPORT_DIR)/include.new/libdraw/codec
    142         cp -r -L -t $(EXPORT_DIR)/include.new/libdraw/codec ../draw/codec/*.h
     140        cp -r -L -t $(EXPORT_DIR)/include.new/libdraw ../draw/include/*
    143141        mkdir -p $(EXPORT_DIR)/include.new/libgui
    144142        cp -L -t $(EXPORT_DIR)/include.new/libgui ../gui/*.h
Note: See TracChangeset for help on using the changeset viewer.