added concrete implementations of putc(), getc(), getchar() and gets()
[tangerine.git] / workbench / system / AboutAROS / mmakefile.src
blob576fa58dc03ad556b0ff19de132a60dbddefbfe6
1 # Copyright © 2003, The AROS Development Team. All rights reserved.
2 # $Id$
4 include $(TOP)/config/make.cfg
6 FILES       := main aboutaros locale
7 EXEDIR      := $(AROS_SYSTEM)
9 USER_CFLAGS     := -DADATE="\"$(shell date '+%d.%m.%Y')\""
11 #MM- workbench-system : workbench-system-aboutaros
12 #MM workbench-system-aboutaros : includes linklibs \
13 #MM     workbench-system-aboutaros-catalogs \
14 #MM     workbench-system-aboutaros-generated
16 %build_prog mmake=workbench-system-aboutaros \
17     progname=About targetdir=$(EXEDIR) \
18     files=$(FILES) uselibs="arossupport amiga arosc m"
21 GENERATED   := authors.h sponsors.h acknowledgements.h
23 #MM
24 workbench-system-aboutaros-generated : $(GENERATED)
26 authors.h : db/credits scripts/authors2header.py
27         @$(ECHO) Generating $@
28         @$(PYTHON) scripts/authors2header.py <$< >$@
30 sponsors.h : db/sponsors scripts/sponsors2header.py
31         @$(ECHO) Generating $@
32         @$(PYTHON) scripts/sponsors2header.py <$< >$@
34 acknowledgements.h : $(TOP)/ACKNOWLEDGEMENTS scripts/acknowledgements2header.py
35         @$(ECHO) Generating $@
36         @$(PYTHON) scripts/acknowledgements2header.py <$< >$@
38 %common