pcb and initial code from https://github.com/das-labor/borgware-2d.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
584 B
26 lines
584 B
10 years ago
|
# This file eases the integration of your personal animations which are not
|
||
|
# meant to be included in the official Borgware-2D repository.
|
||
|
#
|
||
|
# Just add your own source files to the SRC variable (checking for options
|
||
|
# introduced in your config.in file) as shown in the commented samples.
|
||
|
|
||
|
MAKETOPDIR = ../..
|
||
|
|
||
|
TARGET = libuser.a
|
||
|
|
||
|
include $(MAKETOPDIR)/defaults.mk
|
||
|
|
||
|
|
||
|
# ifeq ($(ANIMATION_MY_SIMPLE_ANIM),y)
|
||
|
# SRC += my_simple_anim.c
|
||
|
# endif
|
||
|
|
||
|
# ifeq ($(ANIMATION_MY_COMPLEX_ANIM),y)
|
||
|
# SRC += my_complex_anim.c
|
||
|
# endif
|
||
|
|
||
|
|
||
|
include $(MAKETOPDIR)/rules.mk
|
||
|
|
||
|
include $(MAKETOPDIR)/depend.mk
|