1 # Copyright © 2003, The AROS Development Team. All rights reserved.
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
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 <$< >$@