mirror of
https://github.com/punesemu/puNES.git
synced 2025-04-02 10:52:49 -04:00
aggiungere la gestione di un filtro audio modulare. Aggiunta gestione parametro "audio filter" da riga di comando e nel file di confiturazione. Aggiunto nella versione GTK+ il sottomenu nel menu "Audio".
51 lines
1.3 KiB
Makefile
51 lines
1.3 KiB
Makefile
################################################################################
|
|
# Automatically-generated file. Do not edit!
|
|
################################################################################
|
|
|
|
-include ../makefile.init
|
|
|
|
RM := rm -rf
|
|
|
|
# All of the sources participating in the build are defined here
|
|
-include sources.mk
|
|
-include src/openGL/subdir.mk
|
|
-include src/mappers/subdir.mk
|
|
-include src/gui/gtk2/menu/subdir.mk
|
|
-include src/gui/gtk2/subdir.mk
|
|
-include src/glew/subdir.mk
|
|
-include src/filters/video/subdir.mk
|
|
-include src/filters/audio/subdir.mk
|
|
-include src/subdir.mk
|
|
-include subdir.mk
|
|
-include objects.mk
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
ifneq ($(strip $(C_DEPS)),)
|
|
-include $(C_DEPS)
|
|
endif
|
|
endif
|
|
|
|
-include ../makefile.defs
|
|
|
|
# Add inputs and outputs from these tool invocations to the build variables
|
|
|
|
# All Target
|
|
all: punes64
|
|
|
|
# Tool invocations
|
|
punes64: $(OBJS) $(USER_OBJS)
|
|
@echo 'Building target: $@'
|
|
@echo 'Invoking: Cross GCC Linker'
|
|
x86_64-glibc2.12.2-linux-gnu-gcc -L/usr/x86_64-glibc2.12.2-linux-gnu/usr/lib -L/usr/x86_64-glibc2.12.2-linux-gnu/usr/lib64 -o "punes64" $(OBJS) $(USER_OBJS) $(LIBS)
|
|
@echo 'Finished building target: $@'
|
|
@echo ' '
|
|
|
|
# Other Targets
|
|
clean:
|
|
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) punes64
|
|
-@echo ' '
|
|
|
|
.PHONY: all clean dependents
|
|
.SECONDARY:
|
|
|
|
-include ../makefile.targets
|