ifupdown-ng/Makefile
2020-07-18 04:24:53 -06:00

18 lines
287 B
Makefile

CFLAGS := -ggdb3 -O2 -Wall -I.
LIBIFUPDOWN_SRC = \
libifupdown/list.c \
libifupdown/dict.c \
libifupdown/interface.c
LIBIFUPDOWN_OBJ = ${LIBIFUPDOWN_SRC:.c=.o}
libifupdown.a: ${LIBIFUPDOWN_OBJ}
ar -rcs $@ ${LIBIFUPDOWN_OBJ}
all: libifupdown.a
clean:
rm -f ${LIBIFUPDOWN_OBJ}