made initanim internal
This commit is contained in:
parent
ee4c420b41
commit
f92234da78
|
@ -22,7 +22,7 @@ void main_final(void) {
|
|||
|
||||
init_nick();
|
||||
if(GLOBAL(privacy)>2){ //firstboot
|
||||
execute_file("initanim.c0d");
|
||||
execute_file("initanim.int");
|
||||
if(execute_file("1boot.int")){
|
||||
lcdPrintln("Badge SETUP");
|
||||
lcdPrintln("error.");
|
||||
|
|
|
@ -31,7 +31,7 @@ CRYPTFLAGS=-p
|
|||
skey=`cd .. && ./getkey.pl l0dable_sign`
|
||||
ekey=`cd .. && ./getkey.pl l0dable_crypt`
|
||||
|
||||
all: $(OBJS) $(ELFS) $(BINS) $(CODS) $(NIKS) 1boot.int debug.int config.int
|
||||
all: $(OBJS) $(ELFS) $(BINS) $(CODS) $(NIKS) 1boot.int debug.int config.int initanim.int
|
||||
|
||||
$(LDFILE):
|
||||
-@echo "MEMORY" > $(LDFILE)
|
||||
|
@ -71,6 +71,9 @@ debug.int: debug.c0d .PHONY
|
|||
config.int: config.c0d .PHONY
|
||||
mv $< $@
|
||||
|
||||
initanim.int: initanim.c0d .PHONY
|
||||
mv $< $@
|
||||
|
||||
clean:
|
||||
rm -f *.o *.elf *.bin usetable.h
|
||||
|
||||
|
|
Loading…
Reference in New Issue