rockbox/firmware/test/snprintf/Makefile
Daniel Stenberg 2955a2ead3 initial test code for the snprintf() (and family) function
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3449 a1c6a512-1295-4272-9138-f99709370657
2003-03-16 19:12:48 +00:00

16 lines
No EOL
184 B
Makefile

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)