9 lines
166 B
Makefile
9 lines
166 B
Makefile
CFLAGS += -g -Wall -Wextra -pedantic -pedantic-errors
|
|
|
|
%.class:%.java
|
|
javac -d $(PWD) $^
|
|
|
|
all: temperatures qsort-example getopt-example URLParts.class
|
|
|
|
.PHONY: all
|