Test initialisation of MUIA_List_AdjustWidth and MUIA_List_AdjustHeight, and
[AROS.git] / compiler / include / aros / genmodule.h
blob343220c88ea0a62d67c74b3eb578ca817fb998f9
1 /*
2 * Copyright (C) 2012-2016, The AROS Development Team. All rights reserved.
3 * Author: Jason S. McMullan <jason.mcmullan@gmail.com>
5 * Licensed under the AROS PUBLIC LICENSE (APL) Version 1.1
6 */
8 #ifndef AROS_GENMODULE_H
9 #define AROS_GENMODULE_H
12 Iinclude the sub-include file for a particular CPU.
14 #if defined __i386__
15 # include <aros/i386/genmodule.h>
16 #elif defined __x86_64__
17 # include <aros/x86_64/genmodule.h>
18 #elif defined __mc68000__
19 # include <aros/m68k/genmodule.h>
20 #elif defined __MORPHOS__
21 # include <aros/morphos/genmodule.h>
22 #elif defined __powerpc__
23 # include <aros/ppc/genmodule.h>
24 #elif defined __arm__
25 # if defined __thumb2__
26 # include <aros/arm/genmodule-thumb2.h>
27 # else
28 # include <aros/arm/genmodule.h>
29 # endif
30 #else
31 # error unsupported CPU type
32 #endif
34 #endif /* AROS_GENMODULE_H */