blob: ed7731ad1b7602bdf42c27a2ae8d9549a543385e [file] [log] [blame]
Patrick Georgi3b77b722011-07-07 15:41:53 +02001# Borland MAKE Makefile for PDCurses library - DOS BC++ 3.0+
2#
3# Usage: make -f [path\]bccdos.mak [DEBUG=] [target]
4#
5# where target can be any of:
6# [all|demos|pdcurses.lib|testcurs.exe...]
7
8# Change the memory MODEL here, if desired
9MODEL = l
10
11O = obj
12
13!ifndef PDCURSES_SRCDIR
14PDCURSES_SRCDIR = ..
15!endif
16
17!include $(PDCURSES_SRCDIR)\version.mif
18!include $(PDCURSES_SRCDIR)\libobjs.mif
19
20osdir = $(PDCURSES_SRCDIR)\dos
21
22!ifdef DEBUG
Stefan Reinauer5bbc5e52015-11-10 09:13:43 -080023CFLAGS = -N -v -y -DPDCDEBUG
Patrick Georgi3b77b722011-07-07 15:41:53 +020024!else
Stefan Reinauer5bbc5e52015-11-10 09:13:43 -080025CFLAGS = -O
Patrick Georgi3b77b722011-07-07 15:41:53 +020026!endif
27
28CPPFLAGS = -I$(PDCURSES_SRCDIR)
29
30BUILD = $(CC) -1- -K -G -rd -d -w-eff -w-par -c \
31-m$(MODEL) $(CFLAGS) $(CPPFLAGS)
32
33LIBEXE = tlib /C /E
34
35LIBCURSES = pdcurses.lib
36
37all: $(LIBCURSES) $(DEMOS)
38
39clean:
40 -del *.obj
41 -del *.lib
42 -del *.map
43 -del *.exe
44
45demos: $(DEMOS)
46
47$(LIBCURSES) : $(LIBOBJS) $(PDCOBJS)
48 -del $@
49 $(LIBEXE) $@ @$(osdir)\bccdos.lrf
50 -copy $(LIBCURSES) panel.lib
51
52.autodepend
53
54{$(srcdir)\}.c.obj:
55 $(BUILD) $<
56
57{$(osdir)\}.c.obj:
58 $(BUILD) $<
59
60{$(demodir)\}.c.obj:
61 $(BUILD) $<
62
63.c.obj:
64 $(BUILD) $<
65
66.obj.exe:
67 $(CC) -m$(MODEL) -e$@ $** $(LIBCURSES)
68
69tuidemo.exe: tuidemo.obj tui.obj $(LIBCURSES)
70 $(CC) -m$(MODEL) -e$@ $**
71
72tui.obj: $(demodir)\tui.c $(demodir)\tui.h $(PDCURSES_CURSES_H)
73 $(BUILD) -I$(demodir) $(demodir)\tui.c
74
75tuidemo.obj: $(demodir)\tuidemo.c $(PDCURSES_CURSES_H)
76 $(BUILD) -I$(demodir) $(demodir)\tuidemo.c
77
78PLATFORM1 = Borland C++ 3.1
79PLATFORM2 = Borland C/C++ 3.1 for DOS
80ARCNAME = pdc$(VER)bcc
81
82!include $(PDCURSES_SRCDIR)\makedist.mif