Check-in [2e16cde0c4]
Overview
Comment:Updated to be quieter during installation of header files
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 2e16cde0c4a3e7edda7762c3c04e7e08cf68e8eb
User & Date: rkeene on 2014-05-05 20:48:46.655
Other Links: manifest | tags
Context
2014-05-05
21:12
Reverted [75e4d5fbed] and updated to do integration work in our driver directly check-in: cbac5b0590 user: rkeene tags: trunk
20:48
Updated to be quieter during installation of header files check-in: 2e16cde0c4 user: rkeene tags: trunk
17:16
Updated to build tcc statically and enable stubs check-in: b850d29737 user: rkeene tags: trunk
Changes
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
74
75
76
77
78
79
80

81
82
83
84
85
86
87







-







		cp -r $(srcdir)/tcc/win32/lib/*.def "$(DESTDIR)$(PACKAGE_INSTALL_DIR)/lib/"; \
	fi
	( for file in $(INSTALL_HEADERS); do echo "#include <$${file}>"; done ) | \
		$(CPP) $(CPPFLAGS) $(CFLAGS) -I$(srcdir)/tcc/include -I$(srcdir)/tcc/include - | awk -f $(srcdir)/headers.awk | while read src dst; do \
			dst="$(DESTDIR)$(PACKAGE_INSTALL_DIR)/include/$$dst"; \
			if [ -e "$${dst}" ]; then continue; fi; \
			dstdir="$$(dirname "$$dst")"; \
			echo mkdir -p "$$dstdir"; \
			mkdir -p "$$dstdir"; \
			echo cp "$$src" "$$dst"; \
			cp "$$src" "$$dst"; \
		done

test:
	rm -rf __TMP__