Makefile works again.
[AROS.git] / tools / collect-aros / env.h.in
blob2ad4396691b93a6cddebf45d493166f3ac25c876
1 #ifndef _ENV_H_
2 #define _ENV_H_
4 #ifdef _NATIVE_
5 #define LD_NAME "/Development/bin/ld"
6 #define STRIP_NAME "/Development/bin/strip"
7 #endif
8 /* Under Windows we can't use paths provided by configure because they are UNIX-style and we don't
9 use MSYS */
10 #ifdef _WIN32
11 #define LD_NAME "@aros_target_cpu@-aros-ld"
12 #define STRIP_NAME "@aros_target_cpu@-aros-strip"
13 #endif
14 #ifndef LD_NAME
15 #define LD_NAME "@orig_target_ld@"
16 #define STRIP_NAME "@aros_target_strip@"
17 #endif
18 #define OBJECT_FORMAT "-m@aros_object_format@"
20 #endif /* !_ENV_H */