-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefileLocal
30 lines (22 loc) · 1.1 KB
/
MakefileLocal
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
# makefile created automaticaly by LFMakeMaker
# LFMakeMaker 1.6 (May 7 2022 20:46:23) (c)LFSoft 1997
gotoall: all
#The compiler (may be customized for compiler's options).
cc=g++ -Wall -O2
opts=-lm -L. -lgfxlib -ldatalib -lGPMF $(shell pkg-config --cflags cairo ) $(shell pkg-config --libs cairo )
GPMFMetersGenerator.o : GPMFMetersGenerator.cpp datalib/Context.h \
datalib/GPVideo.h datalib/GPX.h gfxlib/SpeedGfx.h \
gfxlib/AltitudeGfx.h gfxlib/PathGfx.h gfxlib/SpeedTrkGfx.h \
gfxlib/Export.h gfxlib/QualityGfx.h gfxlib/TrkStatGfx.h Version.h \
libgfxlib.a libdatalib.a MakefileLocal
$(cc) -c -o GPMFMetersGenerator.o GPMFMetersGenerator.cpp \
$(opts)
GPMFMetersGenerator : GPMFMetersGenerator.o libgfxlib.a libdatalib.a \
MakefileLocal
$(cc) -o GPMFMetersGenerator GPMFMetersGenerator.o $(opts)
mkStory.o : mkStory.cpp datalib/Context.h datalib/GPVideo.h \
datalib/GPX.h Version.h libgfxlib.a libdatalib.a MakefileLocal
$(cc) -c -o mkStory.o mkStory.cpp $(opts)
mkStory : mkStory.o libgfxlib.a libdatalib.a MakefileLocal
$(cc) -o mkStory mkStory.o $(opts)
all: mkStory GPMFMetersGenerator