
all:	showlisting create_h

showlisting:	tabelle.o tabelle.h showlisting.o
	g++ -o showlisting showlisting.o tabelle.o

create_h:	tabelle.o tabelle.h create_h.o
	g++ -o create_h create_h.o tabelle.o

clean:
	rm tabelle.o create_h create_h.o showlisting.o showlisting
