#
#
# Mother nature monitor solution
#
# CI0122 Sistemas Operativos
#

CXX := g++
CC  := gcc
LD  := g++

CXXFLAGS := -g -c
CCFLAGS := -g

TARGETS := agua.out
DEPENDS := agua.o Natural.o Condition.o Lock.o Semaphore.o

$(TARGETS): $(DEPENDS)
	$(LD) $(LDFLAGS) $^ -o $@

%.o: %.cc %.h
	$(CXX) $(CXXFLAGS) $<

clean:
	rm -f *.o *.out


