This is the personal HP of Georg Hopp aka Steffers. Yes I know... nobody make personal HPs in the times of social networks. Well, I do!
web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

44 lines
848 B

SOURCES = src/About.css \
src/About.js \
src/Footer.css \
src/Footer.js \
src/Header.css \
src/Header.js \
src/Links.css \
src/Links.js \
src/Page.css \
src/Page.js \
src/Skills.css \
src/Skills.js \
src/Vitae.css \
src/Vitae.js \
src/index.css \
src/index.js \
src/Common/Quote.css \
src/Common/Textbox.css \
src/Common/Textbox.js \
src/Common/Text.css \
src/Common/Text.js \
src/Common/Title.css \
src/Common/Title.js \
src/Dictionary/Dictionary.css \
src/Dictionary/Dictionary.js \
src/Dictionary/Sense.js \
src/Dictionary/Source.css \
src/Dictionary/Source.js \
src/Dictionary/Title.js
.PHONY: all clean
all: .buildchk
.buildchk: $(SOURCES)
npm install
npm run build
touch $@
clean:
rm -Rf build
rm -Rf coverage
rm -Rf node_modules
rm -Rf .buildchk