We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Projectile detectes a make file project from GNUMakefile. GNUMakefile is valid file name for GNU Make by default.
cf. https://www.gnu.org/software/make/manual/make.html
Projectile doesn't detect GNUMakefile.
Maybe GNUMakefile not registered in projectile.el such as the follow sequences. However I don't know how to fix it correctly.
;; Make & CMake (projectile-register-project-type 'make '("Makefile") :project-file "Makefile" :compile "make" :test "make test" :install "make install")
make foo cd foo touch GNUMakefile touch main.c emacs main.c
Maybe any platform and any versions.
The text was updated successfully, but these errors were encountered:
Should be an easy fix - we can just register a gnumake project type, that's pretty much the same as the make one.
gnumake
make
Sorry, something went wrong.
31069dc
No branches or pull requests
Expected behavior
Projectile detectes a make file project from GNUMakefile. GNUMakefile is valid file name for GNU Make by default.
cf. https://www.gnu.org/software/make/manual/make.html
Actual behavior
Projectile doesn't detect GNUMakefile.
Maybe GNUMakefile not registered in projectile.el such as the follow sequences. However I don't know how to fix it correctly.
Steps to reproduce the problem
Environment & Version information
Maybe any platform and any versions.
The text was updated successfully, but these errors were encountered: