LOCAL_INCLUDE =
GCC_OPTIONS = -Wall

LINK_LIBS = -lpthread 

DEBUG_OPTIONS =
LINUX_INCLUDE =

proj	=	druck
client	=	myclient
       #
       # Client compile finished
       #

all:		$(proj) $(client)

${proj}:	$(proj).c $(proj).h 	
		gcc -Os -o $(proj) $(proj).c  $(LINK_LIBS)

${client}:	$(client).c
		gcc -Os -o $(client) $(client).c -lm


clean:	
	rm -f $(proj) $(proj).o
	rm -f $(client) $(client).o

help:
        #
        # compile programs         'make'
        # remove compiled files:   'make clean'
        #


#/***************************************************************************/
#/*     End of file                                                         */
#/***************************************************************************/

