Makefile

URL: https://mirkwood.cs.edinboro.edu/~bennett/class/cmsc2040/fall2026/notes/dice/code/Makefile
 
OBJS = task1pre task2pre task3pre task3Bpre task4pre boston

CXXFLAGS = -Wall -Wextra -Wpedantic -Wshadow -Wconversion -std=c++23 -g -O2

all: ${OBJS}

task4pre: die.o
boston: die.o

die.o: die.h

clean: 
	rm -rf ${OBJS} *.o