9 lines
146 B
Makefile
9 lines
146 B
Makefile
debug: test.cpp magyarsort.h
|
|
g++ test.cpp -g -o test.out
|
|
|
|
release: test.cpp magyarsort.h
|
|
g++ test.cpp -o test.out
|
|
|
|
clean: test.out
|
|
rm test.out
|