-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathmakefile
More file actions
36 lines (25 loc) · 672 Bytes
/
makefile
File metadata and controls
36 lines (25 loc) · 672 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
34
35
36
RM := rm -rf
USER_OBJS :=
LIBS :=
SUBDIRS := \
multiplexer \
mpdgenerator \
encoder \
-include subdir.mk
-include multiplexer/subdir.mk
-include mpdgenerator/subdir.mk
-include encoder/subdir.mk
# Add inputs and outputs from these tool invocations to the build variables
# All Target
all: DASHEncoder
# Tool invocations
DASHEncoder: $(OBJS) $(USER_OBJS)
@echo 'Building target: $@'
@echo 'Invoking: GCC C++ Linker'
g++ -o"DASHEncoder" $(OBJS) $(USER_OBJS) $(LIBS)
@echo 'Finished building target: $@'
@echo ' '
# Other Targets
clean:
-$(RM) $(OBJS)$(C++_DEPS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) DASHEncoder
-@echo ' '