add linked list code
This commit is contained in:
parent
21de678ec1
commit
e8d87d3d37
4 changed files with 177 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
CFLAGS := -ggdb3 -O2 -Wall -I.
|
||||
|
||||
|
||||
LIBIFUPDOWN_SRC = \
|
||||
libifupdown/list.c
|
||||
LIBIFUPDOWN_OBJ = ${LIBIFUPDOWN_SRC:.c=.o}
|
||||
|
||||
|
||||
libifupdown.a: ${LIBIFUPDOWN_OBJ}
|
||||
ar -rcs $@ ${LIBIFUPDOWN_OBJ}
|
||||
|
||||
all: libifupdown.a
|
||||
|
||||
clean:
|
||||
rm -f ${LIBIFUPDOWN_OBJ}
|
Loading…
Add table
Add a link
Reference in a new issue