#17 fnished prepratin for aditional tools
parent
af4cd2819f
commit
6a6ad5a70f
@ -0,0 +1,19 @@
|
||||
SRCS = $(wildcard *.cpp)
|
||||
OBJS = $(SRCS:.cpp=.o)
|
||||
DEPS = $(SRCS:.cpp=.d)
|
||||
|
||||
Common.a: $(OBJS) ../APRS/APRS.a ../BaseCommon/BaseCommon.a ../DStarBase/DStarBase.a ../IRCDDB/IRCDDB.a ../VersionInfo/GitVersion.h
|
||||
$(AR) rcs Common.a $(OBJS)
|
||||
|
||||
%.o : %.cpp
|
||||
$(CC) -I../APRS -I../BaseCommon -I../DStarBase -I../IRCDDB -I../VersionInfo $(CPPFLAGS) -MMD -MD -c $< -o $@
|
||||
|
||||
.PHONY clean:
|
||||
clean:
|
||||
$(RM) *.o *.d Common.a
|
||||
|
||||
../APRS/APRS.a:
|
||||
../BaseCommon/BaseCommon.a:
|
||||
../DStarBase/DStarBase.a:
|
||||
../IRCDDB/IRCDDB.a:
|
||||
../VersionInfo/GitVersion.h:
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue