Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Added documentation for the pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihai Maruseac committed Feb 9, 2011
1 parent fceed98 commit a1cb11a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
Binary file added doc/HaCoTeB_pipeline.dia
Binary file not shown.
16 changes: 16 additions & 0 deletions doc/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.PHONY: all, clean

DIA_FILES = $(wildcard *.dia)
PNG_FILES = $(patsubst %.dia, %.png, $(DIA_FILES))

TEMP_FILES = $(wildcard *~)

DIA = dia -t png

all: $(PNG_FILES)

%.png: %.dia
@$(DIA) $<

clean:
$(RM) $(PNG_FILES) $(TEMP_FILES)

0 comments on commit a1cb11a

Please sign in to comment.