-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (23 loc) · 771 Bytes
/
Makefile
File metadata and controls
33 lines (23 loc) · 771 Bytes
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
THREAD = SINGLE
!include "C:\Borland\BCC55\INCLUDE\makeincl.inc"
########################### Targets #######################
all: CGE7.exe
OBJFILES = CGE7.obj vram.obj cpal.obj saveload.obj undobuf.obj \
strinput.obj anim.obj config.obj
RESFILES = CGE7.res
LIBFILES = MSIMG32.LIB SHLWAPI.LIB
#LIBFILES = WININET.LIB USER32.LIB
CGE7.obj: CGE7.c CGE7.h cpal.h
cpal.obj: cpal.c cpal.h
CGE7.res: CGE7.rc CGE7.h cpal.h
$(RC) $(RCFLAGS) CGE7.rc
CGE7.exe: $(OBJFILES) $(RESFILES)
$(CPP) $(CPPFLAGS) $(OBJFILES) $(LIBFILES)
$(LINKER) ,CGE7.exe,,,,$(RESFILES)
########################### Implicit Rules #######################
.c.obj:
$(CPP) $(CPPFLAGS) -c {$? }
.cpp.obj:
$(CPP) $(CPPFLAGS) -c {$? }
.obj.exe:
$(CPP) $(CPPFLAGS) $<