Created
August 30, 2018 22:39
-
-
Save wrosecrans/07bb46dbf37cb84a87d3e538b7e19001 to your computer and use it in GitHub Desktop.
make autobuilds Makefile.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
will@Tower:~/experiment$ ls | |
some.cpp | |
will@Tower:~/experiment$ make | |
make: *** No targets specified and no makefile found. Stop. | |
will@Tower:~/experiment$ make some | |
g++ some.cpp -o some | |
will@Tower:~/experiment$ rm some | |
will@Tower:~/experiment$ mv some.cpp Makefile.cpp | |
will@will-Precision-Tower-5810:~/projects/experiment$ make | |
g++ Makefile.cpp -o Makefile | |
Makefile:1: warning: NUL character seen; rest of line ignored | |
Makefile:1: *** missing separator. Stop. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment