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 audio_decoder
- $(MAKE) clean -C dgl
- $(MAKE) clean -C lilv
- $(MAKE) clean -C rtaudio
- $(MAKE) clean -C rtmempool
- $(MAKE) clean -C rtmidi
- $(MAKE) clean -C sfzero
- $(MAKE) clean -C water
-
- $(MAKE) clean -C juce_audio_basics
- $(MAKE) clean -C juce_audio_devices
- $(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
-
- # ---------------------------------------------------------------------------------------------------------------------
|