17 lines
190 B
Makefile
17 lines
190 B
Makefile
include ../Makefile.inc
|
|
|
|
SRCS = $(wildcard *.cpp)
|
|
OBJS = ${SRCS:.cpp=.o}
|
|
NAME = libcommlayer.a
|
|
|
|
all: $(NAME)
|
|
|
|
$(NAME): $(OBJS)
|
|
ar rcs $(NAME) $(OBJS)
|
|
|
|
%.o : %.c
|
|
g++
|
|
|
|
clean:
|
|
rm -f *.o *.a
|