rockbox/firmware/test/snprintf/Makefile

16 lines
184 B
Makefile
Raw Normal View History

TARGET = snprintf
OBJS = snprintf.o test.o
CFLAGS = -I../../include
$(TARGET): $(OBJS)
snprintf.o: ../../common/sprintf.c
$(CC) -c $< -o $@
test.o: test.c
clean:
rm -f $(OBJS)