
                CC  = gcc                                  
            CFLAGS  = -Wall -O3 -funroll-loops -fomit-frame-pointer -pipe
            CFLAGS += -I/usr/X11R6/include -I/usr/X11/include
            CFLAGS += -L/usr/X11R6/lib -L/usr/X11/lib -lX11

      APPLICATIONS  = helloworld-1 \
                      helloworld-2 \
                      helloworld-3 \
                      helloworld-4 \
                      helloworld-5 \
                      helloworld-6 \
                      helloworld-7 \
                      helloworld-8 \
                      helloworld-9 

all: $(APPLICATIONS)

clean:
	rm $(APPLICATIONS)
