mirror of
https://github.com/Wiimpathy/HatariWii.git
synced 2024-11-22 09:49:15 +01:00
15 lines
238 B
Makefile
15 lines
238 B
Makefile
# Generic Makefile targets
|
|
|
|
all:
|
|
@echo "Use AHCC project file, or: make -f Makefile.[vbc|gcc]"
|
|
|
|
clean:
|
|
$(RM) *.o *.tmp *~
|
|
|
|
PKG := natfeats-$(shell date -I).zip
|
|
|
|
package: $(NAME) clean
|
|
cd ..; \
|
|
$(RM) $(PKG); \
|
|
zip -r $(PKG) $(NAME)/*
|