Assists music production by grouping standalone programs into sessions. Community version of "Non Session Manager".
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.

19 lines
378B

  1. # To be included in all makefiles
  2. .C.o:
  3. @ echo -n "Compiling: "; tput bold; tput setaf 3; echo $<; tput sgr0; true
  4. @ $(CXX) $(CXXFLAGS) $(INCLUDES) -c $< -o $@
  5. %.C : %.fl
  6. @ fluid -c $<
  7. TAGS: $(SRCS)
  8. etags $(SRCS)
  9. makedepend: $(SRCS)
  10. @ echo -n Checking dependencies...
  11. @ makedepend -f- -- $(CXXFLAGS) -- $(SRCS) > makedepend 2>/dev/null && echo done.
  12. all: makedepend