blob: a8853a81a1465189515f3afa01bdb85b8375760e [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001# We can't make any commitment to support the DJGPP platform,
2# and rely entirely on the OpenSSL community to help is fine
3# tune and test.
4
5my %targets = (
6 "DJGPP" => {
7 inherit_from => [ asm("x86_asm") ],
8 CC => "gcc",
9 CFLAGS => "-fomit-frame-pointer -O2 -Wall",
10 cflags => "-I/dev/env/WATT_ROOT/inc -DTERMIOS -DL_ENDIAN",
11 sys_id => "MSDOS",
12 lflags => add("-L/dev/env/WATT_ROOT/lib"),
13 ex_libs => add("-lwatt"),
14 bn_ops => "BN_LLONG",
15 perlasm_scheme => "a.out",
16 },
17);