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
8 #ifndef AROS_GENMODULE_H
9 #define AROS_GENMODULE_H
12 Iinclude the sub-include file for a particular CPU.
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>
25 # if defined __thumb2__
26 # include <aros/arm/genmodule-thumb2.h>
28 # include <aros/arm/genmodule.h>
31 # error unsupported CPU type
34 #endif /* AROS_GENMODULE_H */