Added a .gitignore, customized icon, allowed p7 in Makefile.

This commit is contained in:
lephe 2018-08-21 18:55:06 +02:00
parent 748d4c4deb
commit dc5cf46a6b
3 changed files with 4 additions and 2 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
# Build files
build/**

View File

@ -8,7 +8,7 @@ AR = $(TOOLCHAIN_PREFIX)ar
OBJCOPY = $(TOOLCHAIN_PREFIX)objcopy
FXCONV = fxconv
G1AWRAPPER = g1a-wrapper
CASIOUPLOADER = CasioUsbUploader
CASIOUPLOADER ?= CasioUsbUploader -w
SRCDIR = src
BASEINCDIR = include
@ -80,7 +80,7 @@ upload: all
# note: to be able to upload withou root privilege, create a file /etc/udev/rules.d/60-user-usb.rules containing
# SUBSYSTEM=="usb", ATTRS{idVendor}=="07cf", ATTRS{idProduct}=="6101", MODE="0666
# note: the uploaded file name (including the path!) must not exceed 12 chars!
cd $(OBJDIR); $(CASIOUPLOADER) -w -f $(OUTPUTNAME).g1a; cd ..
cd $(OBJDIR); $(CASIOUPLOADER) -f $(OUTPUTNAME).g1a; cd ..
.PHONY:
lib: $(LIBS) #$(foreach d, $(LIBS), $(LIBDIR)/$d.a)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB