Hello.
I have this makefile for g++ which compiles to an exe:
Code:
HelloWorld : HelloWorld.o
g++ -o HelloWorld HelloWorld.o
HelloWorld.o : HelloWorld.cpp
g++ -c HelloWorld.cpp
all :
${MAKE} HelloWorld
clean :
-del HelloWorld.o
How would I change it in order to compile the source code into an dll? I have read the manual page and searched after "dll", but nothing useful came up... Thank you.