You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/make -f
- # Makefile for carla modules #
- # -------------------------- #
- # Created by falkTX
- #
-
- # ----------------------------------------------------------------------------------------------------------------------------
-
- all:
-
- clean:
- $(MAKE) clean -C jackbridge
- $(MAKE) clean -C juce_audio_basics
- $(MAKE) clean -C juce_audio_devices
- $(MAKE) clean -C juce_audio_formats
- $(MAKE) clean -C juce_audio_processors
- $(MAKE) clean -C juce_core
- $(MAKE) clean -C juce_data_structures
- $(MAKE) clean -C juce_events
- $(MAKE) clean -C juce_graphics
- $(MAKE) clean -C juce_gui_basics
- $(MAKE) clean -C juce_gui_extra
- $(MAKE) clean -C lilv
- $(MAKE) clean -C native-plugins
- $(MAKE) clean -C rtaudio
- $(MAKE) clean -C rtmempool
- $(MAKE) clean -C rtmidi
- $(MAKE) clean -C theme
-
- # ----------------------------------------------------------------------------------------------------------------------------
|