mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
7849edfa34
* Support "filenames" key for Makefile-style languages * Remove debugging statement * Add CMake * Cleaner docs and tests * Add scons, handle languages with no extensions
24 lines
374 B
Makefile
24 lines
374 B
Makefile
# 24 lines 11 code 5 comments 8 blanks
|
|
|
|
## ##
|
|
## IMPORTANT COMMENT ##
|
|
## ##
|
|
|
|
all: hello
|
|
|
|
hello: main.o factorial.o hello.o
|
|
g++ main.o factorial.o hello.o -o hello
|
|
|
|
# main.o is my favorite
|
|
main.o: main.cpp
|
|
g++ -c main.cpp
|
|
|
|
factorial.o: factorial.cpp
|
|
g++ -c factorial.cpp
|
|
|
|
hello.o: hello.cpp
|
|
g++ -c hello.cpp
|
|
|
|
clean:
|
|
rm *o hello #not counted
|
|
|