You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
F4KXL_DStarGateway/BaseCommon/Makefile

13 lines
231 B

SRCS = $(wildcard *.cpp)
OBJS = $(SRCS:.cpp=.o)
DEPS = $(SRCS:.cpp=.d)
BaseCommon.a: $(OBJS)
$(AR) rcs BaseCommon.a $(OBJS)
%.o : %.cpp
$(CC) $(CPPFLAGS) -MMD -MD -c $< -o $@
-include $(DEPS)
clean:
$(RM) *.o *.d BaseCommon.a

Powered by TurnKey Linux.