13 lines
550 B
Makefile
13 lines
550 B
Makefile
setup:
|
|
# this is a hack that is done due to a lack of communication
|
|
# towards the end of this project
|
|
# a slightly better hack could be done which avoids this but I
|
|
# don't wanna write things to work that way
|
|
cp -r client shared/client-dir
|
|
cp -r shared client/shared-dir
|
|
cp -r server/data shared/server-data
|
|
cp pubspec.yaml client/root-pubspec.yaml
|
|
cp pubspec.yaml shared/root-pubspec.yaml
|
|
|
|
clean:
|
|
rm -rf client/root-pubspec.yaml shared/root-pubspec.yaml shared/client-dir client/shared-dir shared/server-data
|