Files
quacker/Makefile

21 lines
565 B
Makefile

GPP = /usr/bin/g++
OPTS = -Wall -Wno-deprecated -std=c++17 -O2
a.out: diccionariocuacs.o cuac.o fecha.o tablahash.o
$(GPP) $(OPTS) main.cpp tablahash.o cuac.o fecha.o diccionariocuacs.o
fecha.o: fecha.cpp fecha.hpp
$(GPP) $(OPTS) -c fecha.cpp
cuac.o: cuac.hpp cuac.cpp fecha.hpp
$(GPP) $(OPTS) -c cuac.cpp
tablahash.o: cuac.hpp fecha.hpp tablahash.cpp tablahash.hpp
$(GPP) $(OPTS) -c tablahash.cpp
diccionariocuacs.o: diccionariocuacs.cpp diccionariocuacs.hpp cuac.hpp fecha.hpp tablahash.hpp
$(GPP) $(OPTS) -c diccionariocuacs.cpp
clean:
rm *.o a.out