From 465f1a0e97ae242b36de4bfcb4acaf1a7c56f539 Mon Sep 17 00:00:00 2001 From: c vw Date: Mon, 17 May 2021 09:57:43 +0200 Subject: [PATCH] merged with makefile --- Makefile.mac | 479 --------------------------------------------------- 1 file changed, 479 deletions(-) delete mode 100644 Makefile.mac diff --git a/Makefile.mac b/Makefile.mac deleted file mode 100644 index 4057a30..0000000 --- a/Makefile.mac +++ /dev/null @@ -1,479 +0,0 @@ -# Get git commit version and date -GIT_DATE := $(firstword $(shell git --no-pager show --date=short --format="%ai" --name-only)) -GIT_VERSION := $(shell git describe --abbrev=0 --tags) - -# uncomment the line below to include USB Ozy support -# USBOZY_INCLUDE=USBOZY - -# uncomment the line below to include Pure Signal support -PURESIGNAL_INCLUDE=PURESIGNAL - -# uncomment the line to below include support local CW keyer -#LOCALCW_INCLUDE=LOCALCW - -# uncomment the line below for SoapySDR -#SOAPYSDR_INCLUDE=SOAPYSDR - -# uncomment the line to below include support for sx1509 i2c expander -#SX1509_INCLUDE=sx1509 - -# uncomment the line below to include support for STEMlab discovery (WITH AVAHI) -#STEMLAB_DISCOVERY=STEMLAB_DISCOVERY - -# uncomment the line below to include support for STEMlab discovery (WITHOUT AVAHI) -#STEMLAB_DISCOVERY=STEMLAB_DISCOVERY_NOAVAHI - -# uncomment the line below to include MIDI support -MIDI_INCLUDE=MIDI - -# very early code not included yet -#SERVER_INCLUDE=SERVER - -# uncomment the line below for various debug facilities -#DEBUG_OPTION=-D DEBUG - -CFLAGS?= -O -Wno-deprecated-declarations -PKG_CONFIG = pkg-config - -ifeq ($(CONTROLLER2_V2_INCLUDE),CONTROLLER2_V2) -CONTROLLER2_OPTIONS=-D CONTROLLER2_V2 -endif -ifeq ($(CONTROLLER2_V1_INCLUDE),CONTROLLER2_V1) -CONTROLLER2_OPTIONS=-D CONTROLLER2_V1 -endif - -ifeq ($(MIDI_INCLUDE),MIDI) -MIDI_OPTIONS=-D MIDI -MIDI_SOURCES= mac_midi.c midi2.c midi3.c -MIDI_HEADERS= midi.h -MIDI_OBJS= mac_midi.o midi2.o midi3.o -MIDI_LIBS= -framework CoreMIDI -framework Foundation -endif - -ifeq ($(PURESIGNAL_INCLUDE),PURESIGNAL) -PURESIGNAL_OPTIONS=-D PURESIGNAL -PURESIGNAL_SOURCES= \ -ps_menu.c -PURESIGNAL_HEADERS= \ -ps_menu.h -PURESIGNAL_OBJS= \ -ps_menu.o -endif - -ifeq ($(REMOTE_INCLUDE),REMOTE) -REMOTE_OPTIONS=-D REMOTE -REMOTE_SOURCES= \ -remote_radio.c \ -remote_receiver.c -REMOTE_HEADERS= \ -remote_radio.h \ -remote_receiver.h -REMOTE_OBJS= \ -remote_radio.o \ -remote_receiver.o -endif - -ifeq ($(USBOZY_INCLUDE),USBOZY) -USBOZY_OPTIONS=-D USBOZY -USBOZY_LIBS=-lusb-1.0 -USBOZY_SOURCES= \ -ozyio.c -USBOZY_HEADERS= \ -ozyio.h -USBOZY_OBJS= \ -ozyio.o -endif - -ifeq ($(SOAPYSDR_INCLUDE),SOAPYSDR) -SOAPYSDR_OPTIONS=-D SOAPYSDR -SOAPYSDRLIBS=-lSoapySDR -SOAPYSDR_SOURCES= \ -soapy_discovery.c \ -soapy_protocol.c -SOAPYSDR_HEADERS= \ -soapy_discovery.h \ -soapy_protocol.h -SOAPYSDR_OBJS= \ -soapy_discovery.o \ -soapy_protocol.o -endif - -ifeq ($(LOCALCW_INCLUDE),LOCALCW) -LOCALCW_OPTIONS=-D LOCALCW -LOCALCW_SOURCES= iambic.c -LOCALCW_HEADERS= iambic.h -LOCALCW_OBJS = iambic.o -endif - -# -# We have two versions of STEMLAB_DISCOVERY here, -# the second one has to be used -# if you do not have the avahi (devel-) libraries -# on your system. -# -ifeq ($(STEMLAB_DISCOVERY), STEMLAB_DISCOVERY) -STEMLAB_OPTIONS=-D STEMLAB_DISCOVERY \ - $(shell $(PKG_CONFIG) --cflags avahi-gobject) \ - $(shell $(PKG_CONFIG) --cflags libcurl) -STEMLAB_LIBS=$(shell $(PKG_CONFIG) --libs avahi-gobject --libs libcurl) -STEMLAB_SOURCES=stemlab_discovery.c -STEMLAB_HEADERS=stemlab_discovery.h -STEMLAB_OBJS=stemlab_discovery.o -endif - -ifeq ($(STEMLAB_DISCOVERY), STEMLAB_DISCOVERY_NOAVAHI) -STEMLAB_OPTIONS=-D STEMLAB_DISCOVERY -D NO_AVAHI $(shell $(PKG_CONFIG) --cflags libcurl) -STEMLAB_LIBS=$(shell $(PKG_CONFIG) --libs libcurl) -STEMLAB_SOURCES=stemlab_discovery.c -STEMLAB_HEADERS=stemlab_discovery.h -STEMLAB_OBJS=stemlab_discovery.o -endif - -ifeq ($(SERVER_INCLUDE), SERVER) -SERVER_OPTIONS=-D CLIENT_SERVER -SERVER_SOURCES= \ -client_server.c server_menu.c -SERVER_HEADERS= \ -client_server.h -SERVER_OBJS= \ -client_server.o server_menu.o -endif - -GTKINCLUDES=$(shell $(PKG_CONFIG) --cflags gtk+-3.0) -GTKLIBS=$(shell $(PKG_CONFIG) --libs gtk+-3.0) - -AUDIO_OPTIONS=-DPORTAUDIO $(shell $(PKG_CONFIG) --cflags portaudio-2.0) -AUDIO_LIBS=$(shell $(PKG_CONFIG) --libs portaudio-2.0) -MAC_LIBS=-framework IOKit - -OPTIONS=$(MIDI_OPTIONS) $(PURESIGNAL_OPTIONS) $(REMOTE_OPTIONS) $(USBOZY_OPTIONS) \ - $(SOAPYSDR_OPTIONS) $(LOCALCW_OPTIONS) \ - $(STEMLAB_OPTIONS) $(SERVER_OPTIONS) \ - $(CONTROLLER2_OPTIONS) $(AUDIO_OPTIONS) \ - -D GIT_DATE='"$(GIT_DATE)"' -D GIT_VERSION='"$(GIT_VERSION)"' $(DEBUG_OPTION) - -LIBS= -lm -lwdsp -lpthread $(MAC_LIBS) $(AUDIO_LIBS) $(USBOZY_LIBS) $(GTKLIBS) \ - $(SOAPYSDRLIBS) $(STEMLAB_LIBS) $(MIDI_LIBS) -INCLUDES=$(GTKINCLUDES) - -COMPILE=$(CC) $(CFLAGS) $(OPTIONS) $(INCLUDES) - -.c.o: - $(COMPILE) -c -o $@ $< - -PROGRAM=pihpsdr - -SOURCES= \ -MacOS.c \ -audio.c \ -band.c \ -configure.c \ -discovered.c \ -discovery.c \ -filter.c \ -main.c \ -new_menu.c \ -about_menu.c \ -exit_menu.c \ -radio_menu.c \ -rx_menu.c \ -ant_menu.c \ -display_menu.c \ -dsp_menu.c \ -pa_menu.c \ -cw_menu.c \ -oc_menu.c \ -portaudio.c \ -xvtr_menu.c \ -equalizer_menu.c \ -step_menu.c \ -meter_menu.c \ -band_menu.c \ -bandstack_menu.c \ -mode_menu.c \ -filter_menu.c \ -noise_menu.c \ -agc_menu.c \ -vox_menu.c \ -fft_menu.c \ -diversity_menu.c \ -tx_menu.c \ -vfo_menu.c \ -test_menu.c \ -meter.c \ -mode.c \ -old_discovery.c \ -new_discovery.c \ -old_protocol.c \ -new_protocol.c \ -new_protocol_programmer.c \ -rx_panadapter.c \ -tx_panadapter.c \ -property.c \ -radio.c \ -receiver.c \ -rigctl.c \ -rigctl_menu.c \ -toolbar.c \ -transmitter.c \ -zoompan.c \ -sliders.c \ -version.c \ -vfo.c \ -waterfall.c \ -button_text.c \ -vox.c \ -update.c \ -store.c \ -store_menu.c \ -memory.c \ -led.c \ -ext.c \ -error_handler.c \ -cwramp.c \ -protocols.c - - -HEADERS= \ -MacOS.h \ -audio.h \ -agc.h \ -alex.h \ -band.h \ -configure.h \ -bandstack.h \ -channel.h \ -discovered.h \ -discovery.h \ -filter.h \ -new_menu.h \ -about_menu.h \ -rx_menu.h \ -exit_menu.h \ -radio_menu.h \ -ant_menu.h \ -display_menu.h \ -dsp_menu.h \ -pa_menu.h \ -cw_menu.h \ -oc_menu.h \ -xvtr_menu.h \ -equalizer_menu.h \ -step_menu.h \ -meter_menu.h \ -band_menu.h \ -bandstack_menu.h \ -mode_menu.h \ -filter_menu.h \ -noise_menu.h \ -agc_menu.h \ -vox_menu.h \ -fft_menu.h \ -diversity_menu.h \ -tx_menu.h \ -vfo_menu.h \ -test_menu.h \ -meter.h \ -mode.h \ -old_discovery.h \ -new_discovery.h \ -old_protocol.h \ -new_protocol.h \ -rx_panadapter.h \ -tx_panadapter.h \ -property.h \ -radio.h \ -receiver.h \ -rigctl.h \ -rigctl_menu.h \ -toolbar.h \ -transmitter.h \ -zoompan.h \ -sliders.h \ -version.h \ -vfo.h \ -waterfall.h \ -button_text.h \ -vox.h \ -update.h \ -store.h \ -store_menu.h \ -memory.h \ -led.h \ -ext.h \ -error_handler.h \ -protocols.h - - -OBJS= \ -MacOS.o \ -audio.o \ -portaudio.o \ -band.o \ -configure.o \ -discovered.o \ -discovery.o \ -filter.o \ -version.o \ -main.o \ -new_menu.o \ -about_menu.o \ -rx_menu.o \ -exit_menu.o \ -radio_menu.o \ -ant_menu.o \ -display_menu.o \ -dsp_menu.o \ -pa_menu.o \ -cw_menu.o \ -oc_menu.o \ -xvtr_menu.o \ -equalizer_menu.o \ -step_menu.o \ -meter_menu.o \ -band_menu.o \ -bandstack_menu.o \ -mode_menu.o \ -filter_menu.o \ -noise_menu.o \ -agc_menu.o \ -vox_menu.o \ -fft_menu.o \ -diversity_menu.o \ -tx_menu.o \ -vfo_menu.o \ -test_menu.o \ -meter.o \ -mode.o \ -old_discovery.o \ -new_discovery.o \ -old_protocol.o \ -new_protocol.o \ -new_protocol_programmer.o \ -rx_panadapter.o \ -tx_panadapter.o \ -property.o \ -radio.o \ -receiver.o \ -rigctl.o \ -rigctl_menu.o \ -toolbar.o \ -transmitter.o \ -zoompan.o \ -sliders.o \ -vfo.o \ -waterfall.o \ -button_text.o \ -vox.o \ -update.o \ -store.o \ -store_menu.o \ -memory.o \ -led.o \ -ext.o \ -error_handler.o \ -cwramp.o \ -protocols.o - -$(PROGRAM): $(OBJS) $(REMOTE_OBJS) $(USBOZY_OBJS) $(SOAPYSDR_OBJS) \ - $(LOCALCW_OBJS) $(PURESIGNAL_OBJS) \ - $(MIDI_OBJS) $(STEMLAB_OBJS) $(SERVER_OBJS) - $(CC) -o $(PROGRAM) $(OBJS) $(REMOTE_OBJS) $(USBOZY_OBJS) \ - $(SOAPYSDR_OBJS) $(LOCALCW_OBJS) $(PURESIGNAL_OBJS) \ - $(MIDI_OBJS) $(STEMLAB_OBJS) $(SERVER_OBJS) $(LIBS) $(LDFLAGS) - -all: prebuild $(PROGRAM) $(HEADERS) $(REMOTE_HEADERS) $(USBOZY_HEADERS) $(SOAPYSDR_HEADERS) \ - $(LOCALCW_HEADERS) $(SERVER_HEADERS) \ - $(PURESIGNAL_HEADERS) $(MIDI_HEADERS) $(STEMLAB_HEADERS) $(SOURCES) $(REMOTE_SOURCES) \ - $(USBOZY_SOURCES) $(SOAPYSDR_SOURCES) $(SERVER_SOURCES) \ - $(PURESIGNAL_SOURCES) $(MIDI_SOURCES) $(STEMLAB_SOURCES) $(LOCALCW_SOURCES) - -prebuild: - rm -f version.o - -# -# On some platforms, INCLUDES contains "-pthread" (from a pkg-config output) -# which is not a valid cppcheck option -# Therefore, correct this here. Furthermore, we can add additional options to CPP -# in the variable CPPOPTIONS -# -CPPOPTIONS= --enable=all --suppress=shadowVariable --suppress=variableScope -D__APPLE__ -CPPINCLUDES:=$(shell echo $(INCLUDES) | sed -e "s/-pthread / /" ) - -.PHONY: cppcheck -cppcheck: - cppcheck $(CPPOPTIONS) $(OPTIONS) $(CPPINCLUDES) $(SOURCES) $(REMOTE_SOURCES) \ - $(USBOZY_SOURCES) $(SOAPYSDR_SOURCES) $(SERVER_SOURCES) \ - $(PURESIGNAL_SOURCES) $(MIDI_SOURCES) $(STEMLAB_SOURCES) $(LOCALCW_SOURCES) - -clean: - -rm -f *.o - -rm -f $(PROGRAM) hpsdrsim - -rm -rf $(PROGRAM).app - -install: $(PROGRAM) - cp $(PROGRAM) $(DESTDIR)/usr/local/bin - -############################################################################# -# -# hpsdrsim is a cool program that emulates an SDR board with UDP and TCP -# facilities. It even feeds back the TX signal and distorts it, so that -# you can test PURESIGNAL. -# This feature only works if the sample rate is 48000 -# -############################################################################# - -hpsdrsim.o: hpsdrsim.c hpsdrsim.h - $(CC) -c -O $(AUDIO_OPTIONS) hpsdrsim.c - -newhpsdrsim.o: newhpsdrsim.c hpsdrsim.h - $(CC) -c -O newhpsdrsim.c - -hpsdrsim: hpsdrsim.o newhpsdrsim.o - $(CC) -o hpsdrsim $(AUDIO_LIBS) hpsdrsim.o newhpsdrsim.o -lportaudio -lm -lpthread - -############################################################################# -# -# This is for MacOS "app" creation ONLY -# -# The piHPSDR working directory is -# $HOME -> Application Support -> piHPSDR -# -# That is the directory where the WDSP wisdom file (created upon first -# start of piHPSDR) but also the radio settings and the midi.props file -# are stored. -# -# ONLY the wdsp library is bundled with the app, all others, including -# the SoapySDR support modules, must be installed separatedly. -# -############################################################################# - -.PHONY: app -app: $(OBJS) $(REMOTE_OBJS) \ - $(USBOZY_OBJS) $(SOAPYSDR_OBJS) \ - $(LOCALCW_OBJS) $(PURESIGNAL_OBJS) \ - $(MIDI_OBJS) $(STEMLAB_OBJS) $(SERVER_OBJS) - $(CC) -headerpad_max_install_names -o $(PROGRAM) $(OBJS) $(REMOTE_OBJS) \ - $(USBOZY_OBJS) $(SOAPYSDR_OBJS) \ - $(LOCALCW_OBJS) $(PURESIGNAL_OBJS) \ - $(MIDI_OBJS) $(STEMLAB_OBJS) $(SERVER_OBJS) $(LIBS) $(LDFLAGS) - @rm -rf pihpsdr.app - @mkdir -p pihpsdr.app/Contents/MacOS - @mkdir -p pihpsdr.app/Contents/Frameworks - @mkdir -p pihpsdr.app/Contents/Resources - @cp pihpsdr pihpsdr.app/Contents/MacOS/pihpsdr - @cp MacOS/PkgInfo pihpsdr.app/Contents - @cp MacOS/Info.plist pihpsdr.app/Contents - @cp MacOS/hpsdr.icns pihpsdr.app/Contents/Resources/hpsdr.icns - @cp MacOS/hpsdr.png pihpsdr.app/Contents/Resources -# -# Copy the WDSP library into the executable -# - @lib=`otool -L pihpsdr.app/Contents/MacOS/pihpsdr | grep libwdsp | sed -e "s/ (.*//" | sed -e 's/ //'`; \ - libfn=`basename $$lib`; \ - cp "$$lib" "pihpsdr.app/Contents/Frameworks/$$libfn"; \ - chmod u+w "pihpsdr.app/Contents/Frameworks/$$libfn"; \ - install_name_tool -id "@executable_path/../Frameworks/$$libfn" "pihpsdr.app/Contents/Frameworks/$$libfn"; \ - install_name_tool -change "$$lib" "@executable_path/../Frameworks/$$libfn" pihpsdr.app/Contents/MacOS/pihpsdr -# -############################################################################# -- 2.45.2