Files
secondo/Tools/DFS/commlayer/Makefile
2026-01-23 17:03:45 +08:00

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