Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.69K
1 Posted Topic
Thx. Its is 6 years ago, bud thx. Makefile CXX = g++ CXXFLAGS = -c -Wall -I/usr/local/include/SDL2/ # -L/usr/local/libs/SDL2/libSDL2main.a # libSDLmain.a (SDLmain.lib) and libSDL.a (SDL.lib) #libSDLmain.a SDLmain.lib #libSDL.a SDL.lib # ------------------------------------------------------------------------------- all: prog prog: main.o $(CXX) main.o -lSDLmain -lSDL -o Prog main.o: main.cpp $(CXX) $(CXXFLAGS) main.cpp clean: rm -rf ./*.o …
The End.
Slavik