b3cf0c7c5b
plus making the compiler flags more angry.
9 lines
151 B
Makefile
9 lines
151 B
Makefile
CFLAGS += -g -Wall -Wextra -pedantic -pedantic-errors
|
|
|
|
%.class:%.java
|
|
javac -d $(PWD) $^
|
|
|
|
all: temperatures qsort-example URLParts.class
|
|
|
|
.PHONY: all
|