2955a2ead3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3449 a1c6a512-1295-4272-9138-f99709370657
16 lines
No EOL
184 B
Makefile
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)
|