Skip to content
Permalink
2c5a81ad0f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Currently, running `make clean`, and then `make clean` again, it fails,
because `rm` doesn’t find the already deleted files.
2 contributors

Users who have contributed to this file

@pmenzel @niclas
13 lines (9 sloc) 202 Bytes
CFLAGS= -Wall -Werror -Wextra -pedantic -std=gnu99
LDFLAGS=-lm
dwzcalculator: dwzcalculator.o
#elocalculator: elocalculator.o
.PHONY: clean
clean:
rm -f *.o
rm -f dwzcalculator
# rm elocalculator