Changes in uspace/lib/posix/Makefile [ea4910b:2bb6d04] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/Makefile
rea4910b r2bb6d04 41 41 ../hound/libhound.a \ 42 42 ../pcm/libpcm.a \ 43 ../cpp/libcpp.a \ 43 44 $(LIBC_PREFIX)/libc.a \ 44 45 $(LIBC_PREFIX)/crt0.o \ 45 46 $(LIBC_PREFIX)/crt1.o \ 46 47 $(LIBRARY).a 47 48 PRE_DEPEND = $(INCLUDE_LIBC)49 EXTRA_CLEAN = $(INCLUDE_LIBC)50 48 51 49 SOURCES = \ … … 96 94 $(COMMON_CFLAGS) 97 95 96 EXPORT_CXXFLAGS = \ 97 $(COMMON_CXXFLAGS) 98 98 99 include $(USPACE_PREFIX)/Makefile.common 99 100 … … 109 110 echo 'HELENOS_CPPFLAGS="$(EXPORT_CPPFLAGS)"' >> $@.new 110 111 echo 'HELENOS_CFLAGS="$(EXPORT_CFLAGS)"' >> $@.new 111 echo 'HELENOS_CXXFLAGS="$(EXPORT_C FLAGS)"' >> $@.new112 echo 'HELENOS_CXXFLAGS="$(EXPORT_CXXFLAGS)"' >> $@.new 112 113 echo 'HELENOS_LDFLAGS="$(EXPORT_LDFLAGS)"' >> $@.new 113 114 echo 'HELENOS_LDLIBS="$(EXPORT_LDLIBS)"' >> $@.new … … 127 128 cp -L $(EXPORT_FILES) $(EXPORT_DIR)/lib 128 129 129 export-includes: $( INCLUDE_LIBC) $(shell find ./include ../c/arch/$(UARCH)/include $(ROOT_PATH)/abi/include -name '*.h')130 export-includes: $(shell find ./include ../c/arch/$(UARCH)/include $(ROOT_PATH)/abi/include -name '*.h') 130 131 mkdir -p $(EXPORT_DIR)/include 131 132 rm -rf $(EXPORT_DIR)/include.new … … 137 138 rm -rf $(EXPORT_DIR)/include 138 139 mkdir -p $(EXPORT_DIR)/include.new/libdraw 139 cp -r -L -t $(EXPORT_DIR)/include.new/libdraw ../draw/*.h 140 mkdir -p $(EXPORT_DIR)/include.new/libdraw/codec 141 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/* 142 141 mkdir -p $(EXPORT_DIR)/include.new/libgui 143 142 cp -L -t $(EXPORT_DIR)/include.new/libgui ../gui/*.h … … 146 145 mkdir -p $(EXPORT_DIR)/include.new/libpcm 147 146 cp -r -L -t $(EXPORT_DIR)/include.new/libpcm ../pcm/include/* 147 mkdir -p $(EXPORT_DIR)/include.new/libcpp 148 cp -r -L -t $(EXPORT_DIR)/include.new/libcpp ../cpp/include/* 148 149 mv $(EXPORT_DIR)/include.new $(EXPORT_DIR)/include
Note:
See TracChangeset
for help on using the changeset viewer.