blob: 612cc5bb752a93e09419c76752e46ebce5fb3db4 (
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: Aufg1.exe
Aufg1.exe: $(OBJS)
@echo 'Ziel wird erstellt: $@'
g++ -o $@ $(OBJS) $(USER_OBJS) $(LIBS)
@echo 'Erstellung fertig gestellt: $@'
clean:
-$(RM) $(OBJS) $(DEPS) Aufg1.exe
.PHONY: all clean dependents
-include $(ROOT)/makefile.targets
|