blob: 39f128ed8afae9e3187480cf8a47d80c63d42053 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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)
|