EXAMPLES= hello summe jahre kreis if1 switch1 pointer1 zaehlen zaehlen2 stellen noten notenv2 notenv3 notenv4 notenv5 notenv6 teiler spiel1 nullstellen konten1

all: $(EXAMPLES)

%.o : %.cpp
	$(CPP) -c $(CXXFLAGS) $(CPPFLAGS) $< -o $@

% : %.o
	$(CPP) $(CXXFLAGS) $(CPPFLAGS) $< -o $@

clean:
	rm -f *.o $(EXAMPLES) *~
