summaryrefslogtreecommitdiffstats
path: root/languages/cpp/debugger/tests/dll/Makefile
blob: b49c732db29b1520e065e9e06d915937810f9c36 (plain)
1
2
3
4
5
6
7
8

all: main libhelper.so

main: main.cpp
	g++ -g -o main main.cpp -ldl
	
libhelper.so: helper.cpp
	g++ -g -o libhelper.so -fPIC -shared helper.cpp