OBJ1=rdfifo
OBJ2=wrfifo
CC=gcc -Wall -pedantic

all: $(OBJ1).c $(OBJ2).c
	$(CC) -o $(OBJ1) $(OBJ1).c
	$(CC) -o $(OBJ2) $(OBJ2).c
