mirror of
https://github.com/punesemu/puNES.git
synced 2025-04-02 10:52:49 -04:00
2) Aggiunta una finestra di configurazione per potere attivare, disattivcare e regolare il volume di ogni singolo canale APU. 3) Aggiunta la configurazione della sensibilita' dei tasti TURBOA e TURBOB 4) Adesso quando sono in modalità fullscreen e premo CTRL+O per aprire un nuovo file, nascondo la finestra principale e la ripristino dopo la selezione del file. 5) Modificati i valori di snd_factor per il PAL e il Dandy in modo da rendere leggermente piu' veloce il riempimento del buffer audio.
60 lines
1.5 KiB
Makefile
60 lines
1.5 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/mappers/subdir.mk
|
|
-include src/filters/video/subdir.mk
|
|
-include src/filters/audio/subdir.mk
|
|
-include src/d3d9/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: pre-build main-build
|
|
|
|
# Main-build Target
|
|
main-build: punes32.exe
|
|
|
|
# Tool invocations
|
|
punes32.exe: $(OBJS) $(USER_OBJS)
|
|
@echo 'Building target: $@'
|
|
@echo 'Invoking: Cross GCC Linker'
|
|
i686-mingw32-gcc -L/home/fhorse/sviluppo/personale/punes/misc/DXSDK/Lib/x86 -Wl,-subsystem,console -o "punes32.exe" $(OBJS) $(USER_OBJS) $(LIBS)
|
|
@echo 'Finished building target: $@'
|
|
@echo ' '
|
|
$(MAKE) --no-print-directory post-build
|
|
|
|
# Other Targets
|
|
clean:
|
|
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) punes32.exe
|
|
-@echo ' '
|
|
|
|
pre-build:
|
|
-i686-mingw32-windres -DMINGW32 ../src/d3d9/resources.rc src/d3d9/resources.o
|
|
-@echo ' '
|
|
|
|
post-build:
|
|
-../../bin/build_increment
|
|
-@echo ' '
|
|
|
|
.PHONY: all clean dependents
|
|
.SECONDARY: main-build pre-build post-build
|
|
|
|
-include ../makefile.targets
|