ircDDBGateway/GUICommon/Makefile

21 lines
554 B
Makefile
Raw Permalink Normal View History

OBJECTS = AddressTextCtrl.o CallsignTextCtrl.o DCSSet.o DescriptionTextCtrl.o DExtraSet.o DPlusSet.o DPRSSet.o MobileGPSSet.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: