NaCl libpcsc

Check-in [f015f70ac8]
Login
Overview
Comment:Updated clean targets to require boost, which is required to assemble the Makefile.deps file, which must be present
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: f015f70ac8081131f3d564da85f2c381a1d4a154
User & Date: rkeene on 2016-04-14 18:10:14
Other Links: manifest | tags
Context
2016-04-14
18:10
Added a small patch to the NaCl backend to allow it to initialize from an element directly check-in: b60bdc45b5 user: rkeene tags: trunk
18:10
Updated clean targets to require boost, which is required to assemble the Makefile.deps file, which must be present check-in: f015f70ac8 user: rkeene tags: trunk
18:09
Updated with more appropriate BOOST directory check-in: 851374c2f9 user: rkeene tags: trunk
Changes

Modified Makefile from [ffd75a63dc] to [88a53d4c8d].

51
52
53
54
55
56
57
58
59


60
61
62
63
64
65
66
67

68

69
70
71
72
73
51
52
53
54
55
56
57


58
59
60
61
62
63
64
65
66
67
68

69
70
71
72
73
74







-
-
+
+








+
-
+





	mkdir -p "$(DESTDIR)$(prefix)/include"
	mkdir -p "$(DESTDIR)$(prefix)/js"
	cp libpcsc.a "$(DESTDIR)$(prefix)/lib"
	cp libpcsc.h "$(DESTDIR)$(prefix)/include"
	cp libpcsc.js "$(DESTDIR)$(prefix)/js"
	cp -r pcsc/src/include/PCSC "$(DESTDIR)$(prefix)/include"

clean:
	$(MAKE) -C pcsc clean
clean: boost
	$(MAKE) -C pcsc BOOST_DIR='$(shell pwd)/boost' clean
	rm -f libpcsc.a libpcsc.a.new
	rm -f libpcsc.h libpcsc.h.new
	rm -f libpcsc.js libpcsc.js.new
	rm -rf workdir-*
	rm -rf boost.new

distclean: clean
	rm -rf boost
	rm -f archive/boost-*.tar.bz2*
	$(MAKE) -C pcsc distclean
	$(MAKE) -C pcsc BOOST_DIR='$(shell pwd)/boost' distclean

mrproper: distclean
	rm -rf pcsc/src

.PHONY: all