# # Makefile # # Circle - A C++ bare metal environment for Raspberry Pi # Copyright (C) 2014-2024 R. Stange # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # CIRCLEHOME = ../.. all: libusb.a include $(CIRCLEHOME)/Rules.mk OBJS = lan7800.o smsc951x.o usbbluetooth.o usbcdcethernet.o usbfloppydevice.o \ usbconfigparser.o usbdevice.o usbdevicefactory.o usbendpoint.o usbfunction.o \ usbgamepad.o usbgamepadps3.o usbgamepadps4.o usbgamepadstandard.o usbgamepadswitchpro.o \ usbgamepadxbox360.o usbgamepadxboxone.o usbhiddevice.o usbhostcontroller.o \ usbkeyboard.o usbmassdevice.o usbmidi.o usbmidihost.o usbmouse.o usbprinter.o usbrequest.o \ usbstandardhub.o usbstring.o usbserial.o usbserialhost.o usbserialch341.o usbserialcp210x.o \ usbserialpl2303.o usbserialft231x.o usbserialcdc.o usbtouchscreen.o dwhciregister.o ifneq ($(filter 1 2 3,$(RASPPI)),) OBJS += dwhcidevice.o dwhciframeschednper.o dwhciframeschednsplit.o dwhciframeschedper.o \ dwhcirootport.o dwhcixactqueue.o dwhcicompletionqueue.o \ dwhcixferstagedata.o dwhciframeschediso.o else OBJS += xhcicommandmanager.o xhcidevice.o xhciendpoint.o xhcieventmanager.o xhcimmiospace.o \ xhciring.o xhciroothub.o xhcirootport.o xhcisharedmemallocator.o xhcislotmanager.o \ xhciusbdevice.o usbaudiocontrol.o usbaudiostreaming.o usbaudiofunctopology.o endif ifeq ($(strip $(RASPPI)),5) OBJS += usbsubsystem.o endif # using coherent memory region ifeq ($(strip $(AARCH)),32) CFLAGS += -mno-unaligned-access else CFLAGS += -mstrict-align endif libusb.a: $(OBJS) @echo " AR $@" @rm -f $@ @$(AR) cr $@ $(OBJS) -include $(DEPS)