52f0e1139a
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/sscg#f2c78d1acf9fde9403500b8c3c395b17a2c63544
15 lines
191 B
Makefile
15 lines
191 B
Makefile
.PHONY: all install download clean
|
|
|
|
BUILT_FILES=
|
|
|
|
FILES=runtest.sh Makefile
|
|
|
|
run: $(FILES) build
|
|
./runtest.sh
|
|
|
|
build: $(BUILT_FILES)
|
|
chmod a+x ./runtest.sh
|
|
|
|
clean:
|
|
rm -f *~ $(BUILT_FILES)
|