X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/projects.git/blobdiff_plain/e1cac9038a61be38d446ff6b2da21ca3d3e8b450..352bc51510edff4ff4074f6ea246cb661a075454:/tools/make/makefile diff --git a/tools/make/makefile b/tools/make/makefile index 9fd2c44..6513f24 100644 --- a/tools/make/makefile +++ b/tools/make/makefile @@ -4,6 +4,7 @@ NOP = @echo "No operation for target $@" COMPILE = $(NOP) +COMPILE_TARGET = compile.stamp COPY = $(NOP) ZIP = zip -r $(project).zip $(project) DEB = fakeroot dpkg-deb --build $(project) @@ -28,7 +29,7 @@ include make.pre # #----------------------------------------------------------------- -compile: compile.stamp +compile: $(COMPILE_TARGET) # compile ist fertig zip: $(project).zip @@ -40,7 +41,6 @@ deb: $(project).deb #----------------------------------------------------------------- # compile steps #----------------------------------------------------------------- - compile.stamp: $(SOURCES) $(COMPILE) @touch compile.stamp @@ -77,6 +77,6 @@ clean: #----------------------------------------------------------------- # Build-Regeln #----------------------------------------------------------------- -%.pdf : %.tex +%.pdf : %.tex $(SOURCES) pdflatex $<