File: Makefile.conf.in

package info (click to toggle)
dosemu 1.2.2-8
  • links: PTS
  • area: contrib
  • in suites: etch, etch-m68k
  • size: 10,456 kB
  • ctags: 22,464
  • sloc: ansic: 140,878; sh: 5,010; asm: 3,654; perl: 1,427; makefile: 988; tcl: 602; awk: 404; yacc: 300; lex: 157
file content (102 lines) | stat: -rw-r--r-- 2,118 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
#
# (C) Copyright 1992, ..., 2004 the "DOSEMU-Development-Team".
#
# for details see file COPYING in the DOSEMU distribution
#
# Makefile.conf.in for DOSEMU
#
# This file is included by all Makefiles

SHELL = /bin/bash

DOSBIN = dosemu.bin

prefix:=@prefix@
bindir:=@bindir@
sysconfdir:=@sysconfdir@
datadir:=@datadir@
mandir:=@mandir@
docdir:=@docdir@
syshdimagedir:=@syshdimagedir@
x11fontdir:=@x11fontdir@
fdtarball:=@fdtarball@
abs_top_srcdir:=@abs_top_srcdir@
ifeq (0,${MAKELEVEL})
    export abs_top_builddir:=$(shell cd $(top_builddir) && pwd -P)
    SUBDIR := $(subst $(abs_top_builddir)/src/,,$(shell pwd -P))
else
endif
PACKAGE_VERSION:=@PACKAGE_VERSION@

@SET_MAKE@

INCDIR:=@INCDIR@
ifeq ("$(wildcard $(top_builddir)/*.ac)","$(top_builddir)/configure.ac")
  top_srcdir:=$(top_builddir)
  srcdir:=.
else
  top_srcdir:=$(abs_top_srcdir)
  srcdir:=$(abs_top_srcdir)$(subst $(abs_top_builddir),,$(shell pwd -P))
  INCDIR += -I${top_srcdir}/src/include 
endif

CFLAGS:=@CFLAGS@
CPPFLAGS:=@CPPFLAGS@
LDFLAGS:=@LDFLAGS@
LIBS:=@LIBS@
CC:=@CC@
CPP:=@CPP@
LD:=@CC@

ifneq "@ASM_PEDANTIC@" ""
ASM_PEDANTIC:=@ASM_PEDANTIC@
endif

YACC:=@YACC@
# NOTE: we really need bison, yacc won't work any more
#YACC=bison -y
LEX:=@LEX@

@X_SUPPORT@
@X_GRAPHICS@

# This gets defined even if we chose via ./include/config.h NOT to
# use the debugger
DEBUGGER:=@DEBUGGER@

@USE_MHPDBG@
@USE_SBEMU@
OPTIONALSUBDIRS := @OPTIONALSUBDIRS@
PLUGINSUBDIRS := @PLUGINSUBDIRS@
REQUIRED:=@REQUIRED@
@USE_ULTRA@

OS=@CONFIG_HOST@
RANLIB:=@RANLIB@

@ASPI_SUPPORT@
@USE_SVGALIB@
@USE_GPM@
@USE_PTHREADS@
@X86_EMULATOR@

INSTALL:=@INSTALL@
VPATH:=$(srcdir)
REALTOPDIR:=$(top_srcdir)
SRCPATH:=$(top_srcdir)/src
VERSION:=@VERSION@
SUBLEVEL:=@SUBLEVEL@
PATCHLEVEL1:=@PATCHLEVEL1@
PATCHLEVEL2:=@PATCHLEVEL2@
PATCHLEVEL:=$(PATCHLEVEL1).$(PATCHLEVEL2)
ifeq "$(PATCHLEVEL2)" "0"
  PACKETNAME:=dosemu-$(VERSION).$(SUBLEVEL).$(PATCHLEVEL1)
else
  PACKETNAME:=dosemu-$(VERSION).$(SUBLEVEL).$(PATCHLEVEL)
endif
THISVERSION:=$(VERSION).$(SUBLEVEL).$(PATCHLEVEL)
BINPATH:=$(top_builddir)/$(THISVERSION)
EMUVER:=$(VERSION).$(SUBLEVEL)

CFLAGS += $(XXXCFLAGS)