summaryrefslogtreecommitdiffstats
path: root/Bachelor/Softwaretechnik2/mixer/Debug/makefile
blob: 086a40337edf7477b9cc22f7b23070ba761cef5c (plain)
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
################################################################################
# Diese Datei wurde automatisch generiert. Sie darf nicht bearbeitet werden!
################################################################################

ROOT := ..

-include $(ROOT)/makefile.init

RM := rm -rf

# Alle an der Erstellung beteiligten Quellen sind hier definiert.
-include sources.mk
-include $(SUBDIRS:%=%/subdir.mk)
-include objects.mk
-include $(DEPS)
-include $(ROOT)/makefile.defs

all: mixer.exe

mixer.exe: $(OBJS)
	@echo 'Ziel wird erstellt: $@'
	g++  -o $@ $(OBJS) $(USER_OBJS) $(LIBS)
	@echo 'Erstellung fertig gestellt: $@'

clean:
	-$(RM) $(OBJS) $(DEPS) mixer.exe

.PHONY: all clean dependents

-include $(ROOT)/makefile.targets