CC=gcc
CFLAGS=-Wall -g3

PROGRAMS=malloc concatStrings

all: $(PROGRAMS);

test: all
	./malloc 100
	./concatStrings hello world

concatStrings: concatStrings.o dynamicStrings.o
	$(CC) $(CFLAGS) -o $@ $^

clean:
	$(RM) -f a.out *.o $(PROGRAMS)
