C=gcc -c -I$h -Dunix L=c++ -lm -lX11 -L/usr/X11R6/lib #oder mit altem Compiler (GCC Version 2.95) #L=gcc -lm -lX11 all: hello hello.o: hello.cc $C hello.cc hello: hello.o $L hello.o -o hello clean: rm -f *.o