-
Notifications
You must be signed in to change notification settings - Fork 69
/
Makefile.bkp
124 lines (110 loc) · 3.45 KB
/
Makefile.bkp
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#
# Copyright (c) 2011, CESNET z.s.p.o
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# Use shared/static libgpujpeg library?
SHARED_LIBRARY ?= 1
# Flag if use OpenGL
USE_OPENGL ?= 0
# Debug
DEBUG ?= 0
# CUDA install path
CUDA_INSTALL_PATH ?= /usr/local/cuda
# Target executable
TARGET := gpujpegtool
# C files
CFILES := main.c
# Compilers
CC := gcc
LINK := g++ -fPIC
# Common flags
COMMONFLAGS += -I. -I$(CUDA_INSTALL_PATH)/include -O2
# C flags
CFLAGS += $(COMMONFLAGS) -std=c99
# Linker flags
LDFLAGS +=
# Link libgpujpeg library
ifeq ($(SHARED_LIBRARY),1)
LDFLAGS += -Llibgpujpeg -lgpujpeg
else
# Do 32bit vs. 64bit setup
LDFLAGS += libgpujpeg/libgpujpeg.a
#Other flags
ifeq ($(USE_OPENGL),1)
LDFLAGS += -lGLEW
endif
endif
LBITS := $(shell getconf LONG_BIT)
ifeq ($(LBITS),64)
# 64bit
LDFLAGS += -L$(CUDA_INSTALL_PATH)/lib64
else
# 32bit
LDFLAGS += -L$(CUDA_INSTALL_PATH)/lib
endif
LDFLAGS += -lcudart
# Build
build: $(TARGET) $(TARGET).sh
# Clean
clean:
rm -f *.o $(TARGET) $(TARGET).sh
@cd libgpujpeg; make clean
# Lists of object files
COBJS=$(CFILES:.c=.c.o)
# Build target
$(TARGET): $(COBJS) libgpujpeg/libgpujpeg.build
echo $(LDFLAGS)
echo $(SHARED_LIBRARY)
$(LINK) $(COBJS) $(LDFLAGS) -o $(TARGET);
# Build target run script
ifeq ($(SHARED_LIBRARY),1)
$(TARGET).sh:
@printf "PATH=$$" > $(TARGET).sh
@printf "(dirname $$" >> $(TARGET).sh
@printf "0)\n" >> $(TARGET).sh
@printf "LD_LIBRARY_PATH=\"$$" >> $(TARGET).sh
@printf "LD_LIBRARY_PATH;$$" >> $(TARGET).sh
@printf "PATH/libgpujpeg\" $$" >> $(TARGET).sh
@printf "PATH/gpujpeg $$" >> $(TARGET).sh
@printf "@\n" >> $(TARGET).sh
@chmod a+x $(TARGET).sh
else
$(TARGET).sh:
@printf "PATH=$$" > $(TARGET).sh
@printf "(dirname $$" >> $(TARGET).sh
@printf "0)\n" >> $(TARGET).sh
@printf "$$" >> $(TARGET).sh
@printf "PATH/gpujpeg $$" >> $(TARGET).sh
@printf "@\n" >> $(TARGET).sh
@chmod a+x $(TARGET).sh
endif
# Build gpujpeg library
libgpujpeg/libgpujpeg.build:
@cd libgpujpeg; make DEBUG=$(DEBUG) SHARED_LIBRARY=$(SHARED_LIBRARY) USE_OPENGL=$(USE_OPENGL)
# Pattern rule for compiling C files
%.c.o: %.c
$(CC) $(CFLAGS) -c $< -o $@
# Set file dependencies
main.c.o: main.c