###########################################################
# simple_once/makefile
#
# makefile for the example programs 
#

CC = gcc
CFLAGS = -g
THREAD_LOADLIBS =  -lpthread ${LOADLIBS}

all : once

once: once.c
	${CC} ${CFLAGS} once.c -o once ${THREAD_LOADLIBS}

clean :
	rm -f *.o *~ *# core  \
	once
2.7 :
	cp Makefile_2.7 Makefile
	make

pos :
	make
