перенос файликов
This commit is contained in:
13
startEnd/Makefile
Normal file
13
startEnd/Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
CXX = g++
|
||||
CXXFLAGS = -Iinclude/
|
||||
|
||||
all: my_app
|
||||
|
||||
my_app:
|
||||
$(CXX) $(CXXFLAGS) ./my_start.cpp ./my_fin.cpp ./main.cpp -o my_app
|
||||
|
||||
rebuild:
|
||||
rm -f my_app && make my_app
|
||||
|
||||
clean:
|
||||
rm -f my_app
|
||||
Reference in New Issue
Block a user