You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
215 B
13 lines
215 B
all: compileExample
|
|
|
|
CXX = g++ -Wall
|
|
|
|
compileExample: compileExample.o
|
|
$(CXX) compileExample.o -o compileExample -l qd
|
|
|
|
compileExample.o:
|
|
$(CXX) -c compileExample.cpp
|
|
|
|
|
|
clean:
|
|
rm compileExample.o compileExample
|