cpp:index
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
cpp:index [2021/05/06 21:05] – rlunaro | cpp:index [2022/12/02 21:02] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 2: | Line 2: | ||
* [[doxygen|Doxygen made easy]] | * [[doxygen|Doxygen made easy]] | ||
+ | |||
+ | |||
+ | ===== Automatic Makefile ===== | ||
+ | |||
+ | This three line makefile allows to automatically compile single file cpp files. Ideal | ||
+ | for having a test directory where you can create a single cpp file and compile it by | ||
+ | issuing a '' | ||
+ | |||
+ | <code Makefile> | ||
+ | |||
+ | CPPFLAGS := $(CPPFLAGS) -g | ||
+ | |||
+ | cpp_files := $(patsubst %.cpp, | ||
+ | |||
+ | |||
+ | all: $(cpp_files) | ||
+ | |||
+ | |||
+ | </ | ||
+ |
cpp/index.1620335119.txt.gz · Last modified: 2022/12/02 21:02 (external edit)