Changes in uspace/lib/posix/Makefile [a18da67:ea4910b] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/posix/Makefile
ra18da67 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 … … 147 146 mkdir -p $(EXPORT_DIR)/include.new/libpcm 148 147 cp -r -L -t $(EXPORT_DIR)/include.new/libpcm ../pcm/include/* 149 mkdir -p $(EXPORT_DIR)/include.new/libcpp150 cp -r -L -t $(EXPORT_DIR)/include.new/libcpp ../cpp/include/*151 148 mv $(EXPORT_DIR)/include.new $(EXPORT_DIR)/include
Note:
See TracChangeset
for help on using the changeset viewer.