borgware-2d/animations/Makefile

69 lines
1.0 KiB
Makefile
Raw Normal View History

TARGET = libanimations.a
TOPDIR = ..
include $(TOPDIR)/defaults.mk
2011-11-07 22:35:57 +00:00
SRC = program.c
ifeq ($(ANIMATION_SNAKE),y)
SRC += snake.c
endif
ifeq ($(ANIMATION_MATRIX),y)
SRC += matrix.c
endif
2011-10-28 20:20:55 +00:00
ifeq ($(ANIMATION_STONEFLY),y)
SRC += stonefly.c
endif
2009-12-27 00:51:07 +00:00
2011-10-28 20:20:55 +00:00
ifeq ($(ANIMATION_FLYINGDOTS),y)
SRC += flyingdots.c
endif
2009-12-27 00:51:07 +00:00
ifeq ($(ANIMATION_GAMEOFLIFE),y)
SRC += gameoflife.c
endif
ifeq ($(ANIMATION_MHERWEG),y)
SRC += mherweg.c
endif
2010-04-09 20:41:23 +00:00
ifeq ($(ANIMATION_BREAKOUT),y)
SRC += breakout_demo.c
endif
ifeq ($(ANIMATION_LTN_ANT),y)
SRC += ltn_ant.c
endif
ifeq ($(ANIMATION_BMSCROLLER),y)
SRC += bitmapscroller.c
endif
2010-04-15 21:49:43 +00:00
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
2011-11-30 23:45:00 +00:00
ifeq ($(ANIMATION_LOGO_28C3),y)
SRC += 28c3.c
endif
ifneq (,$(filter y,$(ANIMATION_PLASMA) $(ANIMATION_PSYCHEDELIC)))
SRC += fpmath_patterns.c
2011-03-14 10:34:16 +00:00
endif
2011-10-28 20:20:55 +00:00
ifeq ($(ANIMATION_TIME),y)
SRC += borg_time.c
endif
include $(TOPDIR)/rules.mk