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