15 lines
223 B
Makefile
15 lines
223 B
Makefile
|
TARGET = libsmallanimations.a
|
||
|
TOPDIR = ..
|
||
|
|
||
|
include $(TOPDIR)/defaults.mk
|
||
|
|
||
|
ifeq ($(SMALLANIMATION_ROWWALK),y)
|
||
|
SRC += rowwalk.c
|
||
|
endif
|
||
|
ifeq ($(SMALLANIMATION_COLWALK),y)
|
||
|
SRC += colwalk.c
|
||
|
endif
|
||
|
|
||
|
|
||
|
include $(TOPDIR)/rules.mk
|