ircDDBGateway/GUICommon/Makefile

21 lines
549 B
Makefile
Raw Normal View History

2020-06-03 14:47:34 +02:00
OBJECTS = AddressTextCtrl.o CallsignTextCtrl.o DCSSet.o DescriptionTextCtrl.o DExtraSet.o DPlusSet.o DPRSSet.o GPSDSet.o PortTextCtrl.o RemoteSet.o \
2018-05-15 20:32:38 +02:00
RepeaterDataSet.o RepeaterInfoSet.o RestrictedTextCtrl.o StarNetSet.o XLXSet.o
.PHONY: all
2018-05-15 20:32:38 +02:00
all: GUICommon.a
GUICommon.a: $(OBJECTS) ../Common/Common.a
2018-05-15 20:32:38 +02:00
$(AR) rcs GUICommon.a $(OBJECTS)
-include $(OBJECTS:.o=.d)
2018-05-15 20:32:38 +02:00
%.o: %.cpp
$(CXX) $(CFLAGS) -I../Common -c -o $@ $<
$(CXX) -MM $(CFLAGS) -I../Common $< > $*.d
2018-05-15 20:32:38 +02:00
.PHONY: clean
2018-05-15 20:32:38 +02:00
clean:
$(RM) GUICommon.a *.o *.d *.bak *~
../Common/Common.a: