-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- updated documentation - fixed compiler warnings
- Loading branch information
Sven Oliver Moll
committed
Jul 14, 2020
1 parent
5c58327
commit 04eaf6e
Showing
9 changed files
with
1,021 additions
and
1,133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
USB2AMIGA_VARIANTS = CDTV | ||
export BUILD_BASE = $(HOME)/tmp | ||
|
||
RM = rm -rf | ||
CP = cp -v | ||
|
||
all: $(USB2AMIGA_VARIANTS) | ||
|
||
clean: | ||
$(RM) $(BUILD_BASE) | ||
|
||
release: | ||
@if git status | grep '[ ]USB2Amiga/'; then \ | ||
echo -e "\n*** source code contains uncommitted changes\n"; \ | ||
exit 1; \ | ||
fi | ||
$(MAKE) clean | ||
$(MAKE) all | ||
for r in $(USB2AMIGA_VARIANTS); do $(CP) $(BUILD_BASE)/$$r/USB2Amiga.hex hex/USB2Amiga.$$r.hex; done | ||
git add hex/ | ||
|
||
CDTV: | ||
$(MAKE) -C USB2Amiga -f ../mk/CDTV.mk all | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.