Update the 8266 stuff to my newest build.

This commit is contained in:
cnlohr 2015-08-16 00:54:18 -04:00
parent 30648367b7
commit a1a3d94e28
13 changed files with 424 additions and 47 deletions

View file

@ -1,13 +1,13 @@
all : execute_reflash page.dat push
all : execute_reflash page.mpfs push
IP?=192.168.4.1
mfsmaker : mfsmaker.c
gcc -o $@ $^
page.dat : mfsmaker page
page.mpfs : mfsmaker page
# cat to_compress/*.js | gzip -9 > page/compressed.js.gz
./mfsmaker page page.dat
./mfsmaker page page.mpfs
pushtodev : pushtodev.c
gcc -o $@ $^
@ -15,8 +15,8 @@ pushtodev : pushtodev.c
execute_reflash : execute_reflash.c md5.c
gcc -o $@ $^
push : pushtodev page.dat
./pushtodev $(IP) 1048576 page.dat
push : pushtodev page.mpfs
./pushtodev $(IP) 1048576 page.mpfs
clean :
rm -rf mfsmaker page.dat pushtodev execute_reflash
rm -rf mfsmaker page.mpfs pushtodev execute_reflash