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/DStarBase/Makefile

16 lines
274 B

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

Powered by TurnKey Linux.