31 lines
486 B
Makefile
31 lines
486 B
Makefile
CC=x86_64-w64-mingw32-gcc
|
|
CXX=x86_64-w64-mingw32-g++
|
|
RM=rm -f
|
|
CPPFLAGS=-Wall -std=gnu++17
|
|
LDFLAGS=-static
|
|
LDLIBS=-lm
|
|
|
|
SRCS=main.cpp Spigot.cpp
|
|
OBJS=$(subst .cpp,.o,$(SRCS))
|
|
|
|
all: main
|
|
|
|
debug: $(OBJS)
|
|
$(CXX) $(LDFLAGS) -ggdb -O0 -o main $(OBJS) $(LDLIBS)
|
|
|
|
main: $(OBJS)
|
|
$(CXX) $(LDFLAGS) -O3 -o main $(OBJS) $(LDLIBS)
|
|
|
|
depend: .depend
|
|
|
|
.depend: $(SRCS)
|
|
$(RM) ./.depend
|
|
$(CXX) $(CPPFLAGS) -MM $^ >> ./.depend
|
|
|
|
clean:
|
|
$(RM) $(OBJS)
|
|
|
|
distclean: clean
|
|
$(RM) *~ .depend
|
|
|
|
include .depend |