SRC = main.c 
SRC2 = testSlaves.c
OBJ=$(SRC:.c=.o)

CFLAGS = -Wall -g

default:
	gcc $(CFLAGS) -o ttt  $(SRC)
	gcc $(CFLAGS) -o testSlaves  $(SRC2)

