Stazed / rakarrack-plus

Rakarrack plus LV2s
GNU General Public License v2.0
36 stars 8 forks source link

make does not rebuild the UI if .fl files are modified #22

Closed fpesari closed 3 years ago

fpesari commented 3 years ago

I modified the .fl files both manually and in fluid, then I ran

make clean
make

but the build program in ./src/rakarrack-plus did not change its interface and looked just like it did before.

Stazed commented 3 years ago

The program does not compile .fl files. To update you need to either open each .fl file in FLUID and go to File/Write Code. This will update the .cxx and .h related files in the same directory. Or, if doing wholesale changes with sed, you need to make the changes in all related files: .fl, .cxx, .h.

fpesari commented 3 years ago

I see fluid has a -c option to compile .fl files. Could it be implemented into the makefile, either as a make ui command or into regular make? I can implement it, no probs, would you be willing to merge it?

Stazed commented 3 years ago

No thanks, I prefer generating the .cxx files.