-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.old
More file actions
18 lines (15 loc) · 837 Bytes
/
Makefile.old
File metadata and controls
18 lines (15 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
all: cpxprep nntpfs mplayerfs
nntpfs: nntpfs.cpp
# g++ -O0 -g3 -ggdb -o nntpfs -D_FILE_OFFSET_BITS=64 -lfuse -lz nntpfs.cpp
# g++ -O0 -g3 -ggdb -o nntpfs -pg -fprofile-arcs -D_FILE_OFFSET_BITS=64 -lfuse -lz nntpfs.cpp
g++ -Wall -O0 -g3 -ggdb -o nntpfs -D_FILE_OFFSET_BITS=64 -DVERSION=0.8 -lfuse -lz nntpfs.cpp
#-D_REENTRANT
# g++ -O3 -g3 -ggdb -o nntpfs -pg -fprofile-arcs -fprofile-use -D_FILE_OFFSET_BITS=64 -lfuse -lz nntpfs.cpp
# g++ -O3 -g3 -ggdb -o nntpfs -fprofile-use -D_FILE_OFFSET_BITS=64 -lfuse -lz nntpfs.cpp
# g++ -Wall -O3 -g3 -ggdb -o nntpfs -D_FILE_OFFSET_BITS=64 -DVERSION=0.8 -lfuse -lz nntpfs.cpp
nntpfs.cpp: cpxprep $(wildcard *.cpx)
./cpxprep nntpfs.cpx >nntpfs.cpp
cpxprep:
g++ -O3 -o cpxprep cpxprep.cpp
mplayerfs: mplayerfs.cpp
g++ -O0 -g3 -ggdb -o mplayerfs -D_FILE_OFFSET_BITS=64 -lfuse mplayerfs.cpp