Skip to content
Snippets Groups Projects
Commit 50f738d8 authored by Claudio Scafuri's avatar Claudio Scafuri :speech_balloon:
Browse files

fix makefile for INAU

parent 467623d1
No related branches found
Tags 1.0.4
No related merge requests found
......@@ -17,3 +17,4 @@ core*
software
oldsrc
CVS
*-srv
NAME_SRV=gof-gateway
PY_FILES += $(wildcard src/*.py)
default: bin ${PY_FILES}
@cp src/${NAME_SRV} ${PY_FILES} bin/
default: bin/${NAME_SRV} ${PY_FILES}
@cp ${PY_FILES} bin/${NAME_SRV}
bin:
@test -d $@ || mkdir $@
bin/${NAME_SRV}:
@test -d $@ || mkdirhier $@
clean:
@rm -fr bin/ src/*~
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment