mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-21 10:26:06 +03:00
Don't display false install errors
git-svn-id: svn://svn.code.sf.net/p/axtls/code/trunk@23 9a5d90b5-6617-0410-8a86-bb477d3ed2e3
This commit is contained in:
parent
8578256d9f
commit
3a700442f6
21
Makefile
21
Makefile
@ -24,10 +24,10 @@ else
|
|||||||
all: target
|
all: target
|
||||||
endif
|
endif
|
||||||
|
|
||||||
target : $(STAGE) $(TARGET)
|
|
||||||
|
|
||||||
include config/makefile.conf
|
include config/makefile.conf
|
||||||
|
|
||||||
|
target : $(STAGE) $(TARGET)
|
||||||
|
|
||||||
# VERSION has to come from the command line
|
# VERSION has to come from the command line
|
||||||
RELEASE=axTLS-$(VERSION)
|
RELEASE=axTLS-$(VERSION)
|
||||||
|
|
||||||
@ -68,16 +68,17 @@ win32_demo:
|
|||||||
$(MAKE) win32releaseconf
|
$(MAKE) win32releaseconf
|
||||||
|
|
||||||
install: $(PREFIX) all
|
install: $(PREFIX) all
|
||||||
install -m 755 $(STAGE)/libax* $(PREFIX)/lib
|
cp --no-dereference $(STAGE)/libax* $(PREFIX)/lib
|
||||||
-install -m 755 $(STAGE)/ax* $(PREFIX)/bin
|
chmod 755 $(PREFIX)/lib/libax*
|
||||||
-install -m 755 $(STAGE)/axtlsp.pm `perl -e 'use Config; print $$Config{installarchlib};'`
|
-@install -m 755 $(STAGE)/ax* $(PREFIX)/bin > /dev/null 2>&1
|
||||||
-install -m 755 $(STAGE)/awhttpd* $(PREFIX)/bin
|
-@install -m 755 $(STAGE)/axtlsp.pm `perl -e 'use Config; print $$Config{installarchlib};'` > /dev/null 2>&1
|
||||||
|
-@install -m 755 $(STAGE)/awhttpd* $(PREFIX)/bin > /dev/null 2>&1
|
||||||
|
|
||||||
installclean:
|
installclean:
|
||||||
-@rm $(PREFIX)/lib/libax*
|
-@rm $(PREFIX)/lib/libax* > /dev/null 2>&1
|
||||||
-@rm $(PREFIX)/bin/ax*
|
-@rm $(PREFIX)/bin/ax* > /dev/null 2>&1
|
||||||
-@rm $(PREFIX)/bin/awhttpd*
|
-@rm $(PREFIX)/bin/awhttpd* > /dev/null 2>&1
|
||||||
-@rm `perl -e 'use Config; print $$Config{installarchlib};'`/axtlsp.pm
|
-@rm `perl -e 'use Config; print $$Config{installarchlib};'`/axtlsp.pm > /dev/null 2>&1
|
||||||
|
|
||||||
test:
|
test:
|
||||||
cd $(STAGE); ssltest; ../ssl/test/test_axssl.sh; cd -;
|
cd $(STAGE); ssltest; ../ssl/test/test_axssl.sh; cd -;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user