Christian Kroll
12 years ago
19 changed files with 59 additions and 52 deletions
@ -0,0 +1,29 @@ |
|||
TOPDIR = ../.. |
|||
|
|||
include $(TOPDIR)/defaults.mk |
|||
|
|||
ifeq ($(ANIMATION_BMSCROLLER),y) |
|||
SRC = bitmapscroller.c |
|||
endif |
|||
|
|||
ifeq ($(ANIMATION_LABORLOGO),y) |
|||
SRC += laborlogo.c |
|||
endif |
|||
|
|||
ifeq ($(ANIMATION_AMPHIBIAN),y) |
|||
SRC += amphibian.c |
|||
endif |
|||
|
|||
ifeq ($(ANIMATION_LOGO_OOS),y) |
|||
SRC += outofspec.c |
|||
endif |
|||
|
|||
ifeq ($(ANIMATION_FAIRYDUST),y) |
|||
SRC += fairydust.c |
|||
endif |
|||
|
|||
ifeq ($(ANIMATION_IDEENPARK),y) |
|||
SRC += ideenpark.c |
|||
endif |
|||
|
|||
include $(TOPDIR)/rules.mk |
@ -1,7 +1,7 @@ |
|||
#include <stdint.h> |
|||
#include <assert.h> |
|||
|
|||
#include "../compat/pgmspace.h" |
|||
#include "../../compat/pgmspace.h" |
|||
#include "bitmapscroller.h" |
|||
#include "amphibian.h" |
|||
|
@ -0,0 +1,7 @@ |
|||
dep_bool_menu "Bitmap Scroller" ANIMATION_BMSCROLLER y $RANDOM_SUPPORT |
|||
dep_bool "LABOR Logo" ANIMATION_LABORLOGO $ANIMATION_BMSCROLLER |
|||
dep_bool "Amphibian" ANIMATION_AMPHIBIAN $ANIMATION_BMSCROLLER |
|||
dep_bool "Out of Spec Logo" ANIMATION_LOGO_OOS $ANIMATION_BMSCROLLER |
|||
dep_bool "Fairydust" ANIMATION_FAIRYDUST $ANIMATION_BMSCROLLER |
|||
dep_bool "Ideenpark" ANIMATION_IDEENPARK $ANIMATION_BMSCROLLER |
|||
endmenu |
@ -1,7 +1,7 @@ |
|||
#include <stdint.h> |
|||
#include <assert.h> |
|||
|
|||
#include "../compat/pgmspace.h" |
|||
#include "../../compat/pgmspace.h" |
|||
#include "bitmapscroller.h" |
|||
#include "fairydust.h" |
|||
|
@ -0,0 +1,6 @@ |
|||
#ifndef LOGO_FAIRYDUST_H_ |
|||
#define LOGO_FAIRYDUST_H_ |
|||
|
|||
void fairydust(); |
|||
|
|||
#endif /* LOGO_28C3_H_ */ |
@ -1,7 +1,7 @@ |
|||
#include <stdint.h> |
|||
#include <assert.h> |
|||
|
|||
#include "../compat/pgmspace.h" |
|||
#include "../../compat/pgmspace.h" |
|||
#include "bitmapscroller.h" |
|||
#include "ideenpark.h" |
|||
|
@ -1,7 +1,7 @@ |
|||
#include <stdint.h> |
|||
#include <assert.h> |
|||
|
|||
#include "../compat/pgmspace.h" |
|||
#include "../../compat/pgmspace.h" |
|||
#include "bitmapscroller.h" |
|||
#include "laborlogo.h" |
|||
|
@ -1,7 +1,7 @@ |
|||
#include <stdint.h> |
|||
#include <assert.h> |
|||
|
|||
#include "../compat/pgmspace.h" |
|||
#include "../../compat/pgmspace.h" |
|||
#include "bitmapscroller.h" |
|||
#include "outofspec.h" |
|||
|
@ -1,6 +0,0 @@ |
|||
#ifndef LOGO_28C3_H_ |
|||
#define LOGO_28C3_H_ |
|||
|
|||
void fairydust(); |
|||
|
|||
#endif /* LOGO_28C3_H_ */ |
Loading…
Reference in new issue