From 7a802f78fa542bc5b4c5d0c2e5055a31d98c5cdd Mon Sep 17 00:00:00 2001 From: marko Date: Sat, 24 Feb 2024 11:13:07 +0100 Subject: [PATCH] makefile target for init added --- wkOrg/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/wkOrg/Makefile b/wkOrg/Makefile index cf611ea..8bb6daa 100755 --- a/wkOrg/Makefile +++ b/wkOrg/Makefile @@ -1,14 +1,21 @@ +wkOrg = ../submodules/wkOrg + .PHONY: all all: dlCheck # Download der Ausschreibungen und ablegen im Downloadordner .PHONY: download download: - python wkScraper-JvsCal.py + python wkScraper-JvsCalendar .PHONY: dlCheck dlCheck: download ./newNoticeCheck.py +.PHONY: init +init: + ln $(wkOrg)/src/wkScraper/JvsCalendar.py wkScraper-JvsCalendar + .PHONY: clean clean: + rm -f wkScraper-JvsCalendar