LOADFACTOR/AddressList_Hash/Makefile

9 lines
105 B
Makefile
Raw Normal View History

2023-02-07 04:11:57 +00:00
obj = AddList.o Hash.o ArrayHash.o
Main: $(obj)
g++ -g -o $@ $^
..c.o:
g++ -g -c $<
clean:
rm $(obj)