include ../Makefile.inc

all: 3_1 3_2

3_1:
	$(CC) $(CFLAGS) -Wwrite-strings -o 3_1 3_1.c
3_2:
	$(CC) $(CFLAGS) -Wwrite-strings -o 3_2 3_2.c

