Quantcast
Channel: What is the difference between "make" and "make all"? - Stack Overflow
Browsing latest articles
Browse All 2 View Live

Answer by koan for What is the difference between "make" and "make all"?

A simple make will build the first target in the list, which is put-files.make all will build the target all. If you want all to be the default, then move it to the top of the list.To understand what...

View Article


What is the difference between "make" and "make all"?

I have a Makefile with the following structure (working example)..PHONY: image flashcard put-filesput-files: @echo "=== put-files"image: @echo "=== image"flashcard: @echo "=== flashcard"all: put-files...

View Article
Browsing latest articles
Browse All 2 View Live