comparison packages/pkgconf/rules.mak @ 141:450e4e1f1e80 ecos-sw-2000-11-27

Merge from eCos master repository on 2000-11-27-23:09:27-GMT
author jlarmour
date Tue, 28 Nov 2000 00:03:34 +0000
parents a9ac27ec7abc
children 0d2b193a635f
comparison
equal deleted inserted replaced
140:b9721305fd46 141:450e4e1f1e80
127 # rule to clean the build tree 127 # rule to clean the build tree
128 clean: 128 clean:
129 @find . -type f -print | grep -v makefile | xargs rm -f 129 @find . -type f -print | grep -v makefile | xargs rm -f
130 130
131 # rule to copy MLT files 131 # rule to copy MLT files
132 mlt_headers: 132 mlt_headers: $(foreach x,$(MLT),$(PREFIX)/include/pkgconf/$(notdir $x))
133 ifneq ($(strip $(MLT)),) 133
134 @install -c $(MLT) $(PREFIX)/include/pkgconf 134 $(foreach x,$(MLT),$(PREFIX)/include/pkgconf/$(notdir $x)): $(MLT)
135 @chmod u+w $(PREFIX)/include/pkgconf/mlt*.* 135 @cp $(dir $<)/$(notdir $@) $(PREFIX)/include/pkgconf
136 endif 136 @chmod u+w $(PREFIX)/include/pkgconf/$(notdir $@)
137 137
138 # end of file 138 # end of file