Skip to content
New issue

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

REQUEST: Consider detects GNUMakefile #1718

Closed
blame2020 opened this issue Nov 5, 2021 · 1 comment
Closed

REQUEST: Consider detects GNUMakefile #1718

blame2020 opened this issue Nov 5, 2021 · 1 comment

Comments

@blame2020
Copy link
Contributor

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.

;; Make & CMake
(projectile-register-project-type 'make '("Makefile")
                                  :project-file "Makefile"
                                  :compile "make"
                                  :test "make test"
                                  :install "make install")

Steps to reproduce the problem

make foo
cd foo
touch GNUMakefile
touch main.c
emacs main.c

Environment & Version information

Maybe any platform and any versions.

@bbatsov
Copy link
Owner

bbatsov commented Nov 13, 2021

Should be an easy fix - we can just register a gnumake project type, that's pretty much the same as the make one.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants