boinc/samples/worker/Makefile

19 lines
266 B
Makefile
Raw Normal View History

CXXFLAGS += -g
CXX ?= g++
PROGS = worker
all: $(PROGS)
clean: distclean
distclean:
2021-08-16 13:55:54 +00:00
rm -f $(PROGS) $(addsuffix .exe, $(PROGS)) *.o
worker: worker.o
$(CXX) $(CXXFLAGS) $(CPPFLAGS) $(LDFLAGS) -o worker worker.o
install: all
.PHONY: install all distclean clean