mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
bug 212596: JUnit failures in cdt.managedbuilder.test.suite
moved Benchmarks folders from archives outside to be able to enjoy CVS diff command
This commit is contained in:
parent
91d786f13e
commit
6700e5b1b3
103 changed files with 2322 additions and 6 deletions
|
@ -0,0 +1,6 @@
|
||||||
|
FUNCTION AVERAGE(A)
|
||||||
|
INTEGER AVERAGE
|
||||||
|
INTEGER A(:)
|
||||||
|
AVERAGE = SUM(A) / UBOUND(A, DIM = 1)
|
||||||
|
END FUNCTION AVERAGE
|
||||||
|
|
|
@ -0,0 +1,37 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: CDTFortranTest1.exe
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
CDTFortranTest1.exe: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: Linker'
|
||||||
|
mylink -o "CDTFortranTest1.exe" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(MODS)$(EXECUTABLES) CDTFortranTest1.exe
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,20 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
F90_UPPER_SRCS :=
|
||||||
|
F_UPPER_SRCS :=
|
||||||
|
F_SRCS :=
|
||||||
|
OBJ_SRCS :=
|
||||||
|
FOR_UPPER_SRCS :=
|
||||||
|
FOR_SRCS :=
|
||||||
|
F90_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
MODS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
F90_UPPER_SRCS += \
|
||||||
|
../AVERAGE.F90 \
|
||||||
|
../MAIN.F90 \
|
||||||
|
../MODULE.F90
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./AVERAGE.obj \
|
||||||
|
./MAIN.obj \
|
||||||
|
./MODULE.obj
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.obj: ../%.F90
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Test Fortran Compiler'
|
||||||
|
myfort -c -object:"$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
MAIN.obj: AVE_CALCULATOR.mod ../MODULE.F90
|
||||||
|
|
||||||
|
./AVE_CALCULATOR.mod: MODULE.obj
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,9 @@
|
||||||
|
PROGRAM MAIN
|
||||||
|
USE AVE_CALCULATOR
|
||||||
|
INTEGER :: AVE
|
||||||
|
INTEGER, DIMENSION(3) :: ENTERED = 0
|
||||||
|
PRINT *, 'Type three integers: '
|
||||||
|
READ (*,'(I10)') ENTERED
|
||||||
|
AVE = AVERAGE(ENTERED)
|
||||||
|
PRINT *, 'Answer is: ', AVE
|
||||||
|
END PROGRAM MAIN
|
|
@ -0,0 +1,8 @@
|
||||||
|
MODULE AVE_CALCULATOR
|
||||||
|
INTERFACE
|
||||||
|
FUNCTION AVERAGE(A)
|
||||||
|
INTEGER :: AVERAGE
|
||||||
|
INTEGER :: A(:)
|
||||||
|
END FUNCTION AVERAGE
|
||||||
|
END INTERFACE
|
||||||
|
END MODULE AVE_CALCULATOR
|
|
@ -0,0 +1,175 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
F90_SRCS += \
|
||||||
|
../Sources/a.f90 \
|
||||||
|
../Sources/ab.f90 \
|
||||||
|
../Sources/ac.f90 \
|
||||||
|
../Sources/c.f90 \
|
||||||
|
../Sources/ca.f90 \
|
||||||
|
../Sources/cd.f90 \
|
||||||
|
../Sources/ce.f90 \
|
||||||
|
../Sources/d1.f90 \
|
||||||
|
../Sources/e.f90 \
|
||||||
|
../Sources/et.f90 \
|
||||||
|
../Sources/f.f90 \
|
||||||
|
../Sources/fa.f90 \
|
||||||
|
../Sources/fex.f90 \
|
||||||
|
../Sources/ff.f90 \
|
||||||
|
../Sources/g.f90 \
|
||||||
|
../Sources/h.f90 \
|
||||||
|
../Sources/ha.f90 \
|
||||||
|
../Sources/i.f90 \
|
||||||
|
../Sources/ia.f90 \
|
||||||
|
../Sources/ii.f90 \
|
||||||
|
../Sources/is.f90 \
|
||||||
|
../Sources/l.f90 \
|
||||||
|
../Sources/m.f90 \
|
||||||
|
../Sources/ma.f90 \
|
||||||
|
../Sources/main.f90 \
|
||||||
|
../Sources/mo.f90 \
|
||||||
|
../Sources/o.f90 \
|
||||||
|
../Sources/p.f90 \
|
||||||
|
../Sources/r.f90 \
|
||||||
|
../Sources/rx.f90 \
|
||||||
|
../Sources/s.f90 \
|
||||||
|
../Sources/t.f90 \
|
||||||
|
../Sources/u.f90 \
|
||||||
|
../Sources/u1.f90 \
|
||||||
|
../Sources/v.f90 \
|
||||||
|
../Sources/w.f90 \
|
||||||
|
../Sources/x.f90 \
|
||||||
|
../Sources/y.f90 \
|
||||||
|
../Sources/z.f90
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./Sources/a.obj \
|
||||||
|
./Sources/ab.obj \
|
||||||
|
./Sources/ac.obj \
|
||||||
|
./Sources/c.obj \
|
||||||
|
./Sources/ca.obj \
|
||||||
|
./Sources/cd.obj \
|
||||||
|
./Sources/ce.obj \
|
||||||
|
./Sources/d1.obj \
|
||||||
|
./Sources/e.obj \
|
||||||
|
./Sources/et.obj \
|
||||||
|
./Sources/f.obj \
|
||||||
|
./Sources/fa.obj \
|
||||||
|
./Sources/fex.obj \
|
||||||
|
./Sources/ff.obj \
|
||||||
|
./Sources/g.obj \
|
||||||
|
./Sources/h.obj \
|
||||||
|
./Sources/ha.obj \
|
||||||
|
./Sources/i.obj \
|
||||||
|
./Sources/ia.obj \
|
||||||
|
./Sources/ii.obj \
|
||||||
|
./Sources/is.obj \
|
||||||
|
./Sources/l.obj \
|
||||||
|
./Sources/m.obj \
|
||||||
|
./Sources/ma.obj \
|
||||||
|
./Sources/main.obj \
|
||||||
|
./Sources/mo.obj \
|
||||||
|
./Sources/o.obj \
|
||||||
|
./Sources/p.obj \
|
||||||
|
./Sources/r.obj \
|
||||||
|
./Sources/rx.obj \
|
||||||
|
./Sources/s.obj \
|
||||||
|
./Sources/t.obj \
|
||||||
|
./Sources/u.obj \
|
||||||
|
./Sources/u1.obj \
|
||||||
|
./Sources/v.obj \
|
||||||
|
./Sources/w.obj \
|
||||||
|
./Sources/x.obj \
|
||||||
|
./Sources/y.obj \
|
||||||
|
./Sources/z.obj
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
Sources/%.obj: ../Sources/%.f90
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Test Fortran Compiler'
|
||||||
|
myfort -c -object:"$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Sources/a.obj: A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 JJ_MODULE.mod ../module/jj_module.f90
|
||||||
|
|
||||||
|
Sources/ab.obj: B1_MODULE.mod ../module/b1_module.f90 e_MODULE.mod ../module/e_module.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/ac.obj: B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 L_MODULE.mod ../module/l_module.f90
|
||||||
|
|
||||||
|
Sources/c.obj: A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90
|
||||||
|
|
||||||
|
Sources/ca.obj: A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90
|
||||||
|
|
||||||
|
Sources/cd.obj: A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 JJ_MODULE.mod ../module/jj_module.f90 L_MODULE.mod ../module/l_module.f90
|
||||||
|
|
||||||
|
Sources/ce.obj: CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 e_MODULE.mod ../module/e_module.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90
|
||||||
|
|
||||||
|
Sources/d1.obj: A2_MODULE.mod ../module/a2_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 XYZ_MODULE.mod ../module/xyz_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/e.obj: B1_MODULE.mod ../module/b1_module.f90 C1_MODULE.mod ../module/c1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/et.obj: B1_MODULE.mod ../module/b1_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/f.obj: B2_MODULE.mod ../module/b2_module.f90 CBA_MODULE.mod ../module/cba_module.f90 CR_MODULE.mod ../module/cr_module.f90 JJ_MODULE.mod ../module/jj_module.f90 UN_MODULE.mod ../module/un_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/fa.obj: A2_MODULE.mod ../module/a2_module.f90 L1_MODULE.mod ../module/l1_module.f90 M1_MODULE.mod ../module/m1_module.f90 UN_MODULE.mod ../module/un_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/fex.obj: B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 e_MODULE.mod ../module/e_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 P_MODULE.mod ../module/p_module.f90 V_MODULE.mod ../module/v_module.f90
|
||||||
|
|
||||||
|
Sources/ff.obj: M1_MODULE.mod ../module/m1_module.f90 P_MODULE.mod ../module/p_module.f90
|
||||||
|
|
||||||
|
Sources/g.obj: M1_MODULE.mod ../module/m1_module.f90 P_MODULE.mod ../module/p_module.f90
|
||||||
|
|
||||||
|
Sources/h.obj: B1_MODULE.mod ../module/b1_module.f90 C1_MODULE.mod ../module/c1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/ha.obj: B1_MODULE.mod ../module/b1_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90
|
||||||
|
|
||||||
|
Sources/i.obj: B1_MODULE.mod ../module/b1_module.f90 e_MODULE.mod ../module/e_module.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/ia.obj: B1_MODULE.mod ../module/b1_module.f90 e_MODULE.mod ../module/e_module.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/ii.obj: C3_MODULE.mod ../module/c3_module.f90 CBA_MODULE.mod ../module/cba_module.f90 JJ_MODULE.mod ../module/jj_module.f90
|
||||||
|
|
||||||
|
Sources/is.obj: D.mod ../module/d.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/l.obj: B1_MODULE.mod ../module/b1_module.f90 B2_MODULE.mod ../module/b2_module.f90 CBA_MODULE.mod ../module/cba_module.f90 G_MOD.mod ../module/g_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 L_MODULE.mod ../module/l_module.f90
|
||||||
|
|
||||||
|
Sources/m.obj: UN_MODULE.mod ../module/un_module.f90 XXX_MODULE.mod ../module/xxx_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/ma.obj: JJ_MODULE.mod ../module/jj_module.f90 MG_MODULE.mod ../module/mg_module.f90 UN_MODULE.mod ../module/un_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/main.obj: F_MODULE.mod ../module/F_module.f90 JJ_MODULE.mod ../module/jj_module.f90
|
||||||
|
|
||||||
|
Sources/mo.obj: F_MODULE.mod ../module/F_module.f90 C3_MODULE.mod ../module/c3_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 MG_MODULE.mod ../module/mg_module.f90 XXX_MODULE.mod ../module/xxx_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/o.obj: D.mod ../module/d.f90
|
||||||
|
|
||||||
|
Sources/p.obj: A_MODULE.mod ../module/a_module.f90 C2_MODULE.mod ../module/c2_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 MF_MODULE.mod ../module/mf_module.f90 P_MODULE.mod ../module/p_module.f90
|
||||||
|
|
||||||
|
Sources/r.obj: M1_MODULE.mod ../module/m1_module.f90 P_MODULE.mod ../module/p_module.f90
|
||||||
|
|
||||||
|
Sources/rx.obj: D.mod ../module/d.f90 M1_MODULE.mod ../module/m1_module.f90 P_MODULE.mod ../module/p_module.f90
|
||||||
|
|
||||||
|
Sources/s.obj: B1_MODULE.mod ../module/b1_module.f90 K_MODULE.mod ../module/k_module.f90 M1_MODULE.mod ../module/m1_module.f90 UN_MODULE.mod ../module/un_module.f90
|
||||||
|
|
||||||
|
Sources/t.obj: A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/u.obj: D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 MG_MODULE.mod ../module/mg_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/u1.obj: D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
Sources/v.obj: L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/w.obj: B1_MODULE.mod ../module/b1_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/x.obj: A1_MODULE.mod ../module/a1_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 P_MODULE.mod ../module/p_module.f90 XXX_MODULE.mod ../module/xxx_module.f90
|
||||||
|
|
||||||
|
Sources/y.obj: D.mod ../module/d.f90 L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
Sources/z.obj: A_MODULE.mod ../module/a_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 MF_MODULE.mod ../module/mf_module.f90 XXX_MODULE.mod ../module/xxx_module.f90
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include module/subdir.mk
|
||||||
|
-include Sources/subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: CDTFortranTest2
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
CDTFortranTest2: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: Linker'
|
||||||
|
mylink -o "CDTFortranTest2" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(MODS)$(EXECUTABLES) CDTFortranTest2
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,166 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
F90_SRCS += \
|
||||||
|
../module/F_module.f90 \
|
||||||
|
../module/a1_module.f90 \
|
||||||
|
../module/a2_module.f90 \
|
||||||
|
../module/a_module.f90 \
|
||||||
|
../module/abc_module.f90 \
|
||||||
|
../module/b1_module.f90 \
|
||||||
|
../module/b2_module.f90 \
|
||||||
|
../module/c1_module.f90 \
|
||||||
|
../module/c2_module.f90 \
|
||||||
|
../module/c3_module.f90 \
|
||||||
|
../module/cba_module.f90 \
|
||||||
|
../module/cr_module.f90 \
|
||||||
|
../module/d.f90 \
|
||||||
|
../module/e_module.f90 \
|
||||||
|
../module/et_module.f90 \
|
||||||
|
../module/g_module.f90 \
|
||||||
|
../module/jj_module.f90 \
|
||||||
|
../module/k_module.f90 \
|
||||||
|
../module/l1_module.f90 \
|
||||||
|
../module/l_module.f90 \
|
||||||
|
../module/m1_module.f90 \
|
||||||
|
../module/mf_module.f90 \
|
||||||
|
../module/mg_module.f90 \
|
||||||
|
../module/p_module.f90 \
|
||||||
|
../module/un_module.f90 \
|
||||||
|
../module/v_module.f90 \
|
||||||
|
../module/w_module.f90 \
|
||||||
|
../module/xxx_module.f90 \
|
||||||
|
../module/xyz_module.f90 \
|
||||||
|
../module/yyy_module.f90
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./module/F_module.obj \
|
||||||
|
./module/a1_module.obj \
|
||||||
|
./module/a2_module.obj \
|
||||||
|
./module/a_module.obj \
|
||||||
|
./module/abc_module.obj \
|
||||||
|
./module/b1_module.obj \
|
||||||
|
./module/b2_module.obj \
|
||||||
|
./module/c1_module.obj \
|
||||||
|
./module/c2_module.obj \
|
||||||
|
./module/c3_module.obj \
|
||||||
|
./module/cba_module.obj \
|
||||||
|
./module/cr_module.obj \
|
||||||
|
./module/d.obj \
|
||||||
|
./module/e_module.obj \
|
||||||
|
./module/et_module.obj \
|
||||||
|
./module/g_module.obj \
|
||||||
|
./module/jj_module.obj \
|
||||||
|
./module/k_module.obj \
|
||||||
|
./module/l1_module.obj \
|
||||||
|
./module/l_module.obj \
|
||||||
|
./module/m1_module.obj \
|
||||||
|
./module/mf_module.obj \
|
||||||
|
./module/mg_module.obj \
|
||||||
|
./module/p_module.obj \
|
||||||
|
./module/un_module.obj \
|
||||||
|
./module/v_module.obj \
|
||||||
|
./module/w_module.obj \
|
||||||
|
./module/xxx_module.obj \
|
||||||
|
./module/xyz_module.obj \
|
||||||
|
./module/yyy_module.obj
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
module/%.obj: ../module/%.f90
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Test Fortran Compiler'
|
||||||
|
myfort -c -object:"$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
module/F_module.obj: C3_MODULE.mod ../module/c3_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90
|
||||||
|
./F_MODULE.mod: module/F_module.obj C3_MODULE.mod ../module/c3_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90
|
||||||
|
|
||||||
|
module/a1_module.obj: B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 e_MODULE.mod ../module/e_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90
|
||||||
|
./A1_MODULE.mod: module/a1_module.obj B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 e_MODULE.mod ../module/e_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90
|
||||||
|
|
||||||
|
module/a2_module.obj: D.mod ../module/d.f90
|
||||||
|
./A2_MODULE.mod: module/a2_module.obj D.mod ../module/d.f90
|
||||||
|
|
||||||
|
module/a_module.obj: D.mod ../module/d.f90
|
||||||
|
./A_MODULE.mod: module/a_module.obj D.mod ../module/d.f90
|
||||||
|
|
||||||
|
./ABC_MODULE.mod: module/abc_module.obj
|
||||||
|
|
||||||
|
module/b1_module.obj: A2_MODULE.mod ../module/a2_module.f90
|
||||||
|
./B1_MODULE.mod: module/b1_module.obj A2_MODULE.mod ../module/a2_module.f90
|
||||||
|
|
||||||
|
module/b2_module.obj: CR_MODULE.mod ../module/cr_module.f90 UN_MODULE.mod ../module/un_module.f90
|
||||||
|
./B2_MODULE.mod: module/b2_module.obj CR_MODULE.mod ../module/cr_module.f90 UN_MODULE.mod ../module/un_module.f90
|
||||||
|
|
||||||
|
module/c1_module.obj: B1_MODULE.mod ../module/b1_module.f90 JJ_MODULE.mod ../module/jj_module.f90
|
||||||
|
./C1_MODULE.mod: module/c1_module.obj B1_MODULE.mod ../module/b1_module.f90 JJ_MODULE.mod ../module/jj_module.f90
|
||||||
|
|
||||||
|
module/c2_module.obj: A_MODULE.mod ../module/a_module.f90 D.mod ../module/d.f90 K_MODULE.mod ../module/k_module.f90 P_MODULE.mod ../module/p_module.f90
|
||||||
|
./C2_MODULE.mod: module/c2_module.obj A_MODULE.mod ../module/a_module.f90 D.mod ../module/d.f90 K_MODULE.mod ../module/k_module.f90 P_MODULE.mod ../module/p_module.f90
|
||||||
|
|
||||||
|
module/c3_module.obj: A2_MODULE.mod ../module/a2_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 L1_MODULE.mod ../module/l1_module.f90 MF_MODULE.mod ../module/mf_module.f90 V_MODULE.mod ../module/v_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./C3_MODULE.mod: module/c3_module.obj A2_MODULE.mod ../module/a2_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 L1_MODULE.mod ../module/l1_module.f90 MF_MODULE.mod ../module/mf_module.f90 V_MODULE.mod ../module/v_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/cba_module.obj: A2_MODULE.mod ../module/a2_module.f90 A_MODULE.mod ../module/a_module.f90 CR_MODULE.mod ../module/cr_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 L1_MODULE.mod ../module/l1_module.f90 MF_MODULE.mod ../module/mf_module.f90 UN_MODULE.mod ../module/un_module.f90 XXX_MODULE.mod ../module/xxx_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./CBA_MODULE.mod: module/cba_module.obj A2_MODULE.mod ../module/a2_module.f90 A_MODULE.mod ../module/a_module.f90 CR_MODULE.mod ../module/cr_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 L1_MODULE.mod ../module/l1_module.f90 MF_MODULE.mod ../module/mf_module.f90 UN_MODULE.mod ../module/un_module.f90 XXX_MODULE.mod ../module/xxx_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/cr_module.obj: UN_MODULE.mod ../module/un_module.f90
|
||||||
|
./CR_MODULE.mod: module/cr_module.obj UN_MODULE.mod ../module/un_module.f90
|
||||||
|
|
||||||
|
./D.mod: module/d.obj
|
||||||
|
|
||||||
|
module/e_module.obj: ABC_MODULE.mod ../module/abc_module.f90 ET_MODULE.mod ../module/et_module.f90
|
||||||
|
./e_MODULE.mod: module/e_module.obj ABC_MODULE.mod ../module/abc_module.f90 ET_MODULE.mod ../module/et_module.f90
|
||||||
|
|
||||||
|
module/et_module.obj: A_MODULE.mod ../module/a_module.f90 ABC_MODULE.mod ../module/abc_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 MF_MODULE.mod ../module/mf_module.f90 UN_MODULE.mod ../module/un_module.f90 XXX_MODULE.mod ../module/xxx_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./ET_MODULE.mod: module/et_module.obj A_MODULE.mod ../module/a_module.f90 ABC_MODULE.mod ../module/abc_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 MF_MODULE.mod ../module/mf_module.f90 UN_MODULE.mod ../module/un_module.f90 XXX_MODULE.mod ../module/xxx_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/g_module.obj: B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 JJ_MODULE.mod ../module/jj_module.f90 L_MODULE.mod ../module/l_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
./G_MOD.mod: module/g_module.obj B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 JJ_MODULE.mod ../module/jj_module.f90 L_MODULE.mod ../module/l_module.f90 W_MODULE.mod ../module/w_module.f90
|
||||||
|
|
||||||
|
module/jj_module.obj: A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 D.mod ../module/d.f90 L1_MODULE.mod ../module/l1_module.f90 L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 P_MODULE.mod ../module/p_module.f90 V_MODULE.mod ../module/v_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./JJ_MODULE.mod: module/jj_module.obj A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 D.mod ../module/d.f90 L1_MODULE.mod ../module/l1_module.f90 L_MODULE.mod ../module/l_module.f90 M1_MODULE.mod ../module/m1_module.f90 P_MODULE.mod ../module/p_module.f90 V_MODULE.mod ../module/v_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/k_module.obj: C1_MODULE.mod ../module/c1_module.f90 JJ_MODULE.mod ../module/jj_module.f90 MG_MODULE.mod ../module/mg_module.f90 UN_MODULE.mod ../module/un_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./K_MODULE.mod: module/k_module.obj C1_MODULE.mod ../module/c1_module.f90 JJ_MODULE.mod ../module/jj_module.f90 MG_MODULE.mod ../module/mg_module.f90 UN_MODULE.mod ../module/un_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/l1_module.obj: A2_MODULE.mod ../module/a2_module.f90 D.mod ../module/d.f90 V_MODULE.mod ../module/v_module.f90
|
||||||
|
./L1_MODULE.mod: module/l1_module.obj A2_MODULE.mod ../module/a2_module.f90 D.mod ../module/d.f90 V_MODULE.mod ../module/v_module.f90
|
||||||
|
|
||||||
|
module/l_module.obj: A2_MODULE.mod ../module/a2_module.f90 D.mod ../module/d.f90
|
||||||
|
./L_MODULE.mod: module/l_module.obj A2_MODULE.mod ../module/a2_module.f90 D.mod ../module/d.f90
|
||||||
|
|
||||||
|
module/m1_module.obj: A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 D.mod ../module/d.f90 L1_MODULE.mod ../module/l1_module.f90 L_MODULE.mod ../module/l_module.f90 P_MODULE.mod ../module/p_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./M1_MODULE.mod: module/m1_module.obj A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 D.mod ../module/d.f90 L1_MODULE.mod ../module/l1_module.f90 L_MODULE.mod ../module/l_module.f90 P_MODULE.mod ../module/p_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/mf_module.obj: A2_MODULE.mod ../module/a2_module.f90 B2_MODULE.mod ../module/b2_module.f90 CR_MODULE.mod ../module/cr_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 UN_MODULE.mod ../module/un_module.f90 V_MODULE.mod ../module/v_module.f90 XXX_MODULE.mod ../module/xxx_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./MF_MODULE.mod: module/mf_module.obj A2_MODULE.mod ../module/a2_module.f90 B2_MODULE.mod ../module/b2_module.f90 CR_MODULE.mod ../module/cr_module.f90 JJ_MODULE.mod ../module/jj_module.f90 K_MODULE.mod ../module/k_module.f90 UN_MODULE.mod ../module/un_module.f90 V_MODULE.mod ../module/v_module.f90 XXX_MODULE.mod ../module/xxx_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/mg_module.obj: D.mod ../module/d.f90 UN_MODULE.mod ../module/un_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./MG_MODULE.mod: module/mg_module.obj D.mod ../module/d.f90 UN_MODULE.mod ../module/un_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
./P_MODULE.mod: module/p_module.obj
|
||||||
|
|
||||||
|
module/un_module.obj: A2_MODULE.mod ../module/a2_module.f90
|
||||||
|
./UN_MODULE.mod: module/un_module.obj A2_MODULE.mod ../module/a2_module.f90
|
||||||
|
|
||||||
|
module/v_module.obj: A2_MODULE.mod ../module/a2_module.f90
|
||||||
|
./V_MODULE.mod: module/v_module.obj A2_MODULE.mod ../module/a2_module.f90
|
||||||
|
|
||||||
|
module/w_module.obj: F_MODULE.mod ../module/F_module.f90 A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 L_MODULE.mod ../module/l_module.f90 V_MODULE.mod ../module/v_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./W_MODULE.mod: module/w_module.obj F_MODULE.mod ../module/F_module.f90 A2_MODULE.mod ../module/a2_module.f90 B1_MODULE.mod ../module/b1_module.f90 CBA_MODULE.mod ../module/cba_module.f90 D.mod ../module/d.f90 JJ_MODULE.mod ../module/jj_module.f90 L_MODULE.mod ../module/l_module.f90 V_MODULE.mod ../module/v_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/xxx_module.obj: B2_MODULE.mod ../module/b2_module.f90 D.mod ../module/d.f90 K_MODULE.mod ../module/k_module.f90 MG_MODULE.mod ../module/mg_module.f90 UN_MODULE.mod ../module/un_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
./XXX_MODULE.mod: module/xxx_module.obj B2_MODULE.mod ../module/b2_module.f90 D.mod ../module/d.f90 K_MODULE.mod ../module/k_module.f90 MG_MODULE.mod ../module/mg_module.f90 UN_MODULE.mod ../module/un_module.f90 YYY_MODULE.mod ../module/yyy_module.f90
|
||||||
|
|
||||||
|
module/xyz_module.obj: A2_MODULE.mod ../module/a2_module.f90 D.mod ../module/d.f90 L1_MODULE.mod ../module/l1_module.f90
|
||||||
|
./XYZ_MODULE.mod: module/xyz_module.obj A2_MODULE.mod ../module/a2_module.f90 D.mod ../module/d.f90 L1_MODULE.mod ../module/l1_module.f90
|
||||||
|
|
||||||
|
module/yyy_module.obj: A2_MODULE.mod ../module/a2_module.f90 A_MODULE.mod ../module/a_module.f90 B1_MODULE.mod ../module/b1_module.f90 D.mod ../module/d.f90 L1_MODULE.mod ../module/l1_module.f90 UN_MODULE.mod ../module/un_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90
|
||||||
|
./YYY_MODULE.mod: module/yyy_module.obj A2_MODULE.mod ../module/a2_module.f90 A_MODULE.mod ../module/a_module.f90 B1_MODULE.mod ../module/b1_module.f90 D.mod ../module/d.f90 L1_MODULE.mod ../module/l1_module.f90 UN_MODULE.mod ../module/un_module.f90 XYZ_MODULE.mod ../module/xyz_module.f90
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,21 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
F90_UPPER_SRCS :=
|
||||||
|
F_UPPER_SRCS :=
|
||||||
|
F_SRCS :=
|
||||||
|
OBJ_SRCS :=
|
||||||
|
FOR_UPPER_SRCS :=
|
||||||
|
FOR_SRCS :=
|
||||||
|
F90_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
MODS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
module \
|
||||||
|
Sources \
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,37 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: TestATO.out
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
TestATO.out: $(OBJS) $(OPT_SRCS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: AssignToOption Executable Linker'
|
||||||
|
ATOL -opt../TestATO1.opt -opt../TestATO2.opt -o"TestATO.out" $(OBJS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(ASSIGNTOOPTION_EXECUTABLE_OUTPUTS)$(OBJS) TestATO.out
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,18 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
CPP_SRCS :=
|
||||||
|
C_UPPER_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
OBJ_SRCS :=
|
||||||
|
OPT_SRCS :=
|
||||||
|
COP_SRCS :=
|
||||||
|
CPP_UPPER_SRCS :=
|
||||||
|
ASSIGNTOOPTION_EXECUTABLE_OUTPUTS :=
|
||||||
|
OBJS :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,28 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
../TestATO.c
|
||||||
|
|
||||||
|
OPT_SRCS += \
|
||||||
|
../TestATO1.opt \
|
||||||
|
../TestATO2.opt
|
||||||
|
|
||||||
|
COP_SRCS += \
|
||||||
|
../TestATO.cop
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./TestATO.obj
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.obj: ../%.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: AssignToOption Compiler'
|
||||||
|
ATOC -opt../TestATO.cop "$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,6 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
Functions/Func1.d Functions/Func1.o: Functions/Func1.c
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
X_SRCS += \
|
||||||
|
../Functions/Func1.x
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./Functions/Func1.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./Functions/Func1.d
|
||||||
|
|
||||||
|
CS += \
|
||||||
|
./Functions/Func1.c
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
Functions/%.c: ../Functions/%.x
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Copy tool'
|
||||||
|
cp "$<" "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
Functions/%.o: ./Functions/%.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
main.d ./main.o: main.c
|
||||||
|
|
|
@ -0,0 +1,53 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include Functions/subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
EXECUTABLES += \
|
||||||
|
USER_OBJS.foo \
|
||||||
|
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: TestCopyandDeploy
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
TestCopyandDeploy: $(EXECUTABLES)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: Deploy tool'
|
||||||
|
cp $(EXECUTABLES) "TestCopyandDeploy"
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
USER_OBJS.foo: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Invoking: MBS30.linker.gnu.c'
|
||||||
|
gcc -o"USER_OBJS.foo" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(FINAL)$(C_DEPS)$(CS)$(EXECUTABLES) TestCopyandDeploy
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,19 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
FOO_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
X_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
FINAL :=
|
||||||
|
C_DEPS :=
|
||||||
|
CS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
Functions \
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
X_SRCS += \
|
||||||
|
../main.x
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./main.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./main.d
|
||||||
|
|
||||||
|
CS += \
|
||||||
|
./main.c
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.c: ../%.x
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Copy tool'
|
||||||
|
cp "$<" "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
%.o: ./%.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,55 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CC_DEPS)),)
|
||||||
|
-include $(CC_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CPP_DEPS)),)
|
||||||
|
-include $(CPP_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CXX_DEPS)),)
|
||||||
|
-include $(CXX_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(C_UPPER_DEPS)),)
|
||||||
|
-include $(C_UPPER_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: DeleteFile
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
DeleteFile: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: MBS30.linker.gnu.cpp'
|
||||||
|
g++ -o"DeleteFile" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) DeleteFile
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,22 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
CPP_SRCS :=
|
||||||
|
C_UPPER_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
CXX_SRCS :=
|
||||||
|
CC_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
CC_DEPS :=
|
||||||
|
CPP_DEPS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
CXX_DEPS :=
|
||||||
|
C_UPPER_DEPS :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CXX_SRCS += \
|
||||||
|
../main.cxx
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./main.o
|
||||||
|
|
||||||
|
CXX_DEPS += \
|
||||||
|
./main.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.o: ../%.cxx
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.cpp'
|
||||||
|
g++ -O0 -g3 -Wall -c -fmessage-length=0 -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
g++ -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,43 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: inputTypeOption
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
inputTypeOption: $(OBJS) C:\An\ Absolute\ Path\ With\ Spaces\foo.linker $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: org.eclipse.cdt.managedbuilder.core.tests.inputTypeOptionMakefileRenderingTest.c.linker'
|
||||||
|
gcc --linkerInputTypeOption="C:\An Absolute Path With Spaces\foo.linker" -o"inputTypeOption" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) inputTypeOption
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,14 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,50 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
../picksUpGlobalAbsoluteInputOptionPath.c \
|
||||||
|
../resourceSettingAbsoluteCompiler.c \
|
||||||
|
../resourceSettingRelativeCompiler.c
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./picksUpGlobalAbsoluteInputOptionPath.o \
|
||||||
|
./resourceSettingAbsoluteCompiler.o \
|
||||||
|
./resourceSettingRelativeCompiler.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./picksUpGlobalAbsoluteInputOptionPath.d \
|
||||||
|
./resourceSettingAbsoluteCompiler.d \
|
||||||
|
./resourceSettingRelativeCompiler.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.o: ../%.c C:/An\ Absolute\ Path\ With\ Spaces/foo.compiler C:/An\ Absolute\ Path\ With\ Spaces/foo.noquotes.compiler
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: org.eclipse.cdt.managedbuilder.core.tests.inputTypeOptionMakefileRenderingTest.c.compiler'
|
||||||
|
gcc -O3 -Wall -c -fmessage-length=0 -v --compilerInputTypeOption="C:\An Absolute Path With Spaces\foo.compiler" --compilerInputTypeOption=C:\An Absolute Path With Spaces\foo.noquotes.compiler -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O3 -Wall -c -fmessage-length=0 -v --compilerInputTypeOption="C:\An Absolute Path With Spaces\foo.compiler" --compilerInputTypeOption=C:\An Absolute Path With Spaces\foo.noquotes.compiler "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
resourceSettingAbsoluteCompiler.o: ../resourceSettingAbsoluteCompiler.c D:/An\ Absolute\ Path\ With\ Spaces/resource.foo.compiler D:/An\ Absolute\ Path\ With\ Spaces/resource.foo.noquotes.compiler
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: org.eclipse.cdt.managedbuilder.core.tests.inputTypeOptionMakefileRenderingTest.c.compiler'
|
||||||
|
gcc -O3 -Wall -c -fmessage-length=0 -v --compilerInputTypeOption="D:\An Absolute Path With Spaces\resource.foo.compiler" --compilerInputTypeOption=D:\An Absolute Path With Spaces\resource.foo.noquotes.compiler -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O3 -Wall -c -fmessage-length=0 -v --compilerInputTypeOption="D:\An Absolute Path With Spaces\resource.foo.compiler" --compilerInputTypeOption=D:\An Absolute Path With Spaces\resource.foo.noquotes.compiler "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
resourceSettingRelativeCompiler.o: ../resourceSettingRelativeCompiler.c ../A\ Folder\ With\ Spaces/foo.compiler ../A\ Folder\ With\ Spaces/foo.noquotes.compiler
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: org.eclipse.cdt.managedbuilder.core.tests.inputTypeOptionMakefileRenderingTest.c.compiler'
|
||||||
|
gcc -O3 -Wall -c -fmessage-length=0 -v --compilerInputTypeOption="A Folder With Spaces/foo.compiler" --compilerInputTypeOption=A Folder With Spaces/foo.noquotes.compiler -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O3 -Wall -c -fmessage-length=0 -v --compilerInputTypeOption="A Folder With Spaces/foo.compiler" --compilerInputTypeOption=A Folder With Spaces/foo.noquotes.compiler "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,43 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: liblinkedLib.a
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
liblinkedLib.a: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: MBS30.archiver.gnu'
|
||||||
|
ar -r "liblinkedLib.a" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(ARCHIVES)$(C_DEPS) liblinkedLib.a
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
LIBS :=
|
||||||
|
|
||||||
|
USER_OBJS :=
|
|
@ -0,0 +1,14 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
C_SRCS :=
|
||||||
|
O_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
ARCHIVES :=
|
||||||
|
C_DEPS :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,62 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
C:/Documents\ and\ Settings/ltreggia/CDTMBSTest/f1.c \
|
||||||
|
C:/Documents\ and\ Settings/ltreggia/CDTMBSTest/f1_30.c \
|
||||||
|
C:/Documents\ and\ Settings/ltreggia/CDTMBSTest/f2.c \
|
||||||
|
C:/Documents\ and\ Settings/ltreggia/CDTMBSTest/f2_30.c
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./f1.o \
|
||||||
|
./f1_30.o \
|
||||||
|
./f2.o \
|
||||||
|
./f2_30.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./f1.d \
|
||||||
|
./f1_30.d \
|
||||||
|
./f2.d \
|
||||||
|
./f2_30.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
f1.o: C:/Documents\ and\ Settings/ltreggia/CDTMBSTest/f1.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
f1_30.o: C:/Documents\ and\ Settings/agvozdev/CDTMBSTest/f1_30.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
f2.o: C:/Documents\ and\ Settings/ltreggia/CDTMBSTest/f2.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
f2_30.o: C:/Documents\ and\ Settings/agvozdev/CDTMBSTest/f2_30.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
main.d ./main.o: ../main.cpp ../headers/Class1.h ../headers/Class2.h
|
||||||
|
|
||||||
|
../headers/Class1.h:
|
||||||
|
|
||||||
|
../headers/Class2.h:
|
||||||
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include source2/source21/subdir.mk
|
||||||
|
-include source2/subdir.mk
|
||||||
|
-include source1/subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CC_DEPS)),)
|
||||||
|
-include $(CC_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CPP_DEPS)),)
|
||||||
|
-include $(CPP_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CXX_DEPS)),)
|
||||||
|
-include $(CXX_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(C_UPPER_DEPS)),)
|
||||||
|
-include $(C_UPPER_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: multiResConfig
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
multiResConfig: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: MBS30.linker.gnu.cpp'
|
||||||
|
g++ -o"multiResConfig" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) multiResConfig
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,10 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
source1/Class1.d source1/Class1.o: ../source1/Class1.cpp ../headers/Class1.h ../headers/Class2.h
|
||||||
|
|
||||||
|
../headers/Class1.h:
|
||||||
|
|
||||||
|
../headers/Class2.h:
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
../source1/Class1.cpp
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./source1/Class1.o
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./source1/Class1.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
source1/%.o: ../source1/%.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.cpp'
|
||||||
|
g++ -I../headers -O0 -g3 -Wall -c -fmessage-length=0 -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
g++ -MM -MG -P -w -I../headers -O0 -g3 -Wall -c -fmessage-length=0 "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
source2/Class2.d source2/Class2.o: ../source2/Class2.cpp ../headers/Class2.h
|
||||||
|
|
||||||
|
../headers/Class2.h:
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
source2/source21/Class21.d source2/source21/Class21.o: ../source2/source21/Class21.cpp ../source2/source21/Class21.h
|
||||||
|
|
||||||
|
../source2/source21/Class21.h:
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
../source2/source21/Class21.cpp
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./source2/source21/Class21.o
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./source2/source21/Class21.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
source2/source21/Class21.o: ../source2/source21/Class21.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.cpp'
|
||||||
|
g++ -DRESCFG -I../headers -O0 -g3 -Wall -c -fmessage-length=0 -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
g++ -MM -MG -P -w -DRESCFG -I../headers -O0 -g3 -Wall -c -fmessage-length=0 "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
../source2/Class2.cpp
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./source2/Class2.o
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./source2/Class2.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
source2/%.o: ../source2/%.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.cpp'
|
||||||
|
g++ -I../headers -O0 -g3 -Wall -c -fmessage-length=0 -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
g++ -MM -MG -P -w -I../headers -O0 -g3 -Wall -c -fmessage-length=0 "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
CPP_SRCS :=
|
||||||
|
C_UPPER_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
CXX_SRCS :=
|
||||||
|
CC_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
CC_DEPS :=
|
||||||
|
CPP_DEPS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
CXX_DEPS :=
|
||||||
|
C_UPPER_DEPS :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
source2/source21 \
|
||||||
|
source2 \
|
||||||
|
source1 \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
../main.cpp
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./main.o
|
||||||
|
|
||||||
|
CPP_DEPS += \
|
||||||
|
./main.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.o: ../%.cpp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.cpp'
|
||||||
|
g++ -I../headers -O0 -g3 -Wall -c -fmessage-length=0 -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
g++ -MM -MG -P -w -I../headers -O0 -g3 -Wall -c -fmessage-length=0 "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,69 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CC_DEPS)),)
|
||||||
|
-include $(CC_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CPP_DEPS)),)
|
||||||
|
-include $(CPP_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(CXX_DEPS)),)
|
||||||
|
-include $(CXX_DEPS)
|
||||||
|
endif
|
||||||
|
ifneq ($(strip $(C_UPPER_DEPS)),)
|
||||||
|
-include $(C_UPPER_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: pre-build main-build
|
||||||
|
|
||||||
|
# Main-build Target
|
||||||
|
main-build: preAndPostBuildSteps
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
preAndPostBuildSteps: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: MBS30.linker.gnu.cpp'
|
||||||
|
g++ -o"preAndPostBuildSteps" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
$(MAKE) --no-print-directory post-build
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(CC_DEPS)$(CPP_DEPS)$(EXECUTABLES)$(CXX_DEPS)$(C_UPPER_DEPS) preAndPostBuildSteps
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
pre-build:
|
||||||
|
-@echo 'Pre-announce Build Step'
|
||||||
|
-echo 'executing Pre-Build Step'
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
post-build:
|
||||||
|
-@echo 'Post-announce Build Step'
|
||||||
|
-echo 'executing Post-Build Step'
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY: main-build pre-build post-build
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,22 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
CPP_SRCS :=
|
||||||
|
C_UPPER_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
CXX_SRCS :=
|
||||||
|
CC_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
CC_DEPS :=
|
||||||
|
CPP_DEPS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
CXX_DEPS :=
|
||||||
|
C_UPPER_DEPS :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CXX_SRCS += \
|
||||||
|
../main.cxx
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./main.o
|
||||||
|
|
||||||
|
CXX_DEPS += \
|
||||||
|
./main.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.o: ../%.cxx
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.cpp'
|
||||||
|
g++ -O0 -g3 -Wall -c -fmessage-length=0 -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
g++ -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,43 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: rcbsBasicTest
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
rcbsBasicTest: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: MBS30.linker.gnu.c'
|
||||||
|
gcc -o"rcbsBasicTest" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) rcbsBasicTest
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,14 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
../rcbsBasicTest.c
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./rcbsBasicTest.o
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
rcbsBasicTest.o: ../rcbsBasicTest.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Now executing custom build step for rcbsBasicTest debug config'
|
||||||
|
gcc -g -c ../rcbsBasicTest.c -o ./rcbsBasicTest.o
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,43 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: singleFileExe
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
singleFileExe: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: MBS30.linker.gnu.c'
|
||||||
|
gcc -o"singleFileExe" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) singleFileExe
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,14 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
../main.c
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./main.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./main.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.o: ../%.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O0 -g3 -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,4 @@
|
||||||
|
main\ with\ spaces.d main\ with\ spaces.o: ../main\ with\ spaces.c \
|
||||||
|
../blah_blah.h
|
||||||
|
|
||||||
|
../blah_blah.h:
|
|
@ -0,0 +1,44 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include sub\ folder\ with\ spaces/subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: testwithspaces.exe
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
testwithspaces.exe: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: GCC C Linker'
|
||||||
|
gcc -o"testwithspaces.exe" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) testwithspaces.exe
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,18 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
S_UPPER_SRCS :=
|
||||||
|
OBJ_SRCS :=
|
||||||
|
ASM_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
sub\ folder\ with\ spaces \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
sub\ folder\ with\ spaces/foo\ with\ spaces.d \
|
||||||
|
sub\ folder\ with\ spaces/foo\ with\ spaces.o: \
|
||||||
|
../sub\ folder\ with\ spaces/foo\ with\ spaces.c
|
|
@ -0,0 +1,24 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
../sub\ folder\ with\ spaces/foo\ with\ spaces.c
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./sub\ folder\ with\ spaces/foo\ with\ spaces.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./sub\ folder\ with\ spaces/foo\ with\ spaces.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
sub\ folder\ with\ spaces/foo\ with\ spaces.o: ../sub\ folder\ with\ spaces/foo\ with\ spaces.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: GCC C Compiler'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"sub\ folder\ with\ spaces/foo\ with\ spaces.d" -o"$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
../main\ with\ spaces.c
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./main\ with\ spaces.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./main\ with\ spaces.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
main\ with\ spaces.o: ../main\ with\ spaces.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: GCC C Compiler'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"main\ with\ spaces.d" -o"$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,59 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
TEST30_1_GNU_SO_DEPLOY_OUTPUT_OUTPUTS += \
|
||||||
|
default.so.4.5.6 \
|
||||||
|
|
||||||
|
EXECUTABLES += \
|
||||||
|
test30_1.so.1.2.3 \
|
||||||
|
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: Test30_1.so.4.5.6 secondary-outputs
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
Test30_1.so.4.5.6: $(EXECUTABLES)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: Deploy tool'
|
||||||
|
cp $(EXECUTABLES) "Test30_1.so.4.5.6"
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
default.so.4.5.6: Test30_1.so.4.5.6 $(EXECUTABLES)
|
||||||
|
|
||||||
|
test30_1.so.1.2.3: $(STRIPPEDOBJS)
|
||||||
|
@echo 'Invoking: MBS30.linker.gnu.c'
|
||||||
|
gcc -shared -Wl,-soname=test30_1.so.1.2.3 -o"test30_1.so.1.2.3" $(STRIPPEDOBJS)
|
||||||
|
@echo 'Finished building: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(STRIPPEDOBJS)$(OBJS)$(FINAL)$(TEST30_1_GNU_SO_CJPEG_OUTPUT_OUTPUTS)$(C_DEPS)$(TEST30_1_GNU_SO_DEPLOY_OUTPUT_OUTPUTS)$(TEST30_1_GNU_SO_TAR_OUTPUTH_OUTPUTS)$(TEST30_1_GNU_SO_TAR_OUTPUTBMP_OUTPUTS)$(EXECUTABLES)$(TEST30_1_GNU_SO_TAR_OUTPUTC_OUTPUTS) Test30_1.so.4.5.6
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
secondary-outputs: $(TEST30_1_GNU_SO_CJPEG_OUTPUT_OUTPUTS)
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,26 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
FOO_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
OPRESTRIPPED_SRCS :=
|
||||||
|
SO.1.2.3_SRCS :=
|
||||||
|
BMP_SRCS :=
|
||||||
|
TAR_SRCS :=
|
||||||
|
STRIPPEDOBJS :=
|
||||||
|
OBJS :=
|
||||||
|
FINAL :=
|
||||||
|
TEST30_1_GNU_SO_CJPEG_OUTPUT_OUTPUTS :=
|
||||||
|
C_DEPS :=
|
||||||
|
TEST30_1_GNU_SO_DEPLOY_OUTPUT_OUTPUTS :=
|
||||||
|
TEST30_1_GNU_SO_TAR_OUTPUTH_OUTPUTS :=
|
||||||
|
TEST30_1_GNU_SO_TAR_OUTPUTBMP_OUTPUTS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
TEST30_1_GNU_SO_TAR_OUTPUTC_OUTPUTS :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
TAR_SRCS += \
|
||||||
|
../test.tar
|
||||||
|
|
||||||
|
STRIPPEDOBJS += \
|
||||||
|
./f1.o \
|
||||||
|
./f2.o
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./f1.oprestripped \
|
||||||
|
./f2.oprestripped
|
||||||
|
|
||||||
|
TEST30_1_GNU_SO_CJPEG_OUTPUT_OUTPUTS += \
|
||||||
|
./CDT.jpeg
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./f1.d \
|
||||||
|
./f2.d
|
||||||
|
|
||||||
|
TEST30_1_GNU_SO_TAR_OUTPUTC_OUTPUTS += \
|
||||||
|
./f1.c \
|
||||||
|
./f2.c \
|
||||||
|
./CDT.bmp
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
f1.c: ../test.tar
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Un-tar'
|
||||||
|
tar -xf "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
f2.c: f1.c
|
||||||
|
test_ar.h: f1.c
|
||||||
|
CDT.bmp: f1.c
|
||||||
|
|
||||||
|
%.oprestripped: ./%.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O2 -g -Wall -c -fmessage-length=0 -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.oprestripped=%.d)' $(dir $@) > '$(@:%.oprestripped=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O2 -g -Wall -c -fmessage-length=0 -v "$<" >> '$(@:%.oprestripped=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
%.o: ./%.oprestripped
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Strip object file'
|
||||||
|
strip --preserve-dates -o "$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
%.jpeg: ./%.bmp
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Convert to jpeg'
|
||||||
|
cjpeg -outfile "$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,56 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include ABC/subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
TAROUT += \
|
||||||
|
new.tar \
|
||||||
|
|
||||||
|
LOGFILE += \
|
||||||
|
new.log \
|
||||||
|
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: test30_2.tmp
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
test30_2.tmp: $(LOGFILE)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: cat'
|
||||||
|
cat $(LOGFILE)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
new.tar: $(CPP_SRCS) $(ASM_SRCS)
|
||||||
|
@echo 'Invoking: tar-create'
|
||||||
|
tar -cf new.tar $(CPP_SRCS) $(ASM_SRCS)
|
||||||
|
@echo 'Finished building: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
new.log: $(TAROUT)
|
||||||
|
@echo 'Invoking: tar-list'
|
||||||
|
tar -tf $(TAROUT) > new.log
|
||||||
|
@echo 'Finished building: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(TAROUT)$(TERMINAL__DUMMY_OUTPUT__OUTPUTS)$(LOGFILE) test30_2.tmp
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,22 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
CPP_SRCS :=
|
||||||
|
C_UPPER_SRCS :=
|
||||||
|
S_UPPER_SRCS :=
|
||||||
|
ASM_SRCS :=
|
||||||
|
LOG_SRCS :=
|
||||||
|
TAR_SRCS :=
|
||||||
|
CXX_SRCS :=
|
||||||
|
C++_SRCS :=
|
||||||
|
CC_SRCS :=
|
||||||
|
TAROUT :=
|
||||||
|
TERMINAL__DUMMY_OUTPUT__OUTPUTS :=
|
||||||
|
LOGFILE :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
ABC \
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
CPP_SRCS += \
|
||||||
|
../f1.cpp \
|
||||||
|
../f2.cpp
|
||||||
|
|
||||||
|
ASM_SRCS += \
|
||||||
|
../a1.asm
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,43 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: test.exe
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
test.exe: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: GCC C Linker'
|
||||||
|
gcc -o"test.exe" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) test.exe
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,17 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
S_UPPER_SRCS :=
|
||||||
|
OBJ_SRCS :=
|
||||||
|
ASM_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
EXECUTABLES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
../test.c
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./test.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./test.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.o: ../%.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: GCC C Compiler'
|
||||||
|
gcc -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,37 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: testMacroSupportInBuildDefinitions.tar
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
testMacroSupportInBuildDefinitions.tar: $(BAR_FILES)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: Bar Tool'
|
||||||
|
tar cvf $@ $(BAR_FILES)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(TAR_FILE_OUTPUTS)$(BAR_FILES) testMacroSupportInBuildDefinitions.tar
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,13 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
FOO_SRCS :=
|
||||||
|
BAR_SRCS :=
|
||||||
|
TAR_FILE_OUTPUTS :=
|
||||||
|
BAR_FILES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
FOO_SRCS += \
|
||||||
|
../somefile.foo
|
||||||
|
|
||||||
|
BAR_FILES += \
|
||||||
|
./this_is_a_test_prefix_with_a_macro_for_the_project_name_between_here_testMacroSupportInBuildDefinitions_and_heresomefile.bar
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
this_is_a_test_prefix_with_a_macro_for_the_project_name_between_here_testMacroSupportInBuildDefinitions_and_here%.bar: ../%.foo
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: Foo Tool'
|
||||||
|
cp "$<" "$@"
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,43 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
-include ../makefile.init
|
||||||
|
|
||||||
|
RM := rm -rf
|
||||||
|
|
||||||
|
# All of the sources participating in the build are defined here
|
||||||
|
-include sources.mk
|
||||||
|
-include subdir.mk
|
||||||
|
-include objects.mk
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),clean)
|
||||||
|
ifneq ($(strip $(C_DEPS)),)
|
||||||
|
-include $(C_DEPS)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
|
-include ../makefile.defs
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
|
||||||
|
# All Target
|
||||||
|
all: libtwoFileSO.SOS
|
||||||
|
|
||||||
|
# Tool invocations
|
||||||
|
libtwoFileSO.SOS: $(OBJS) $(USER_OBJS)
|
||||||
|
@echo 'Building target: $@'
|
||||||
|
@echo 'Invoking: MBS30.linker.gnu.c'
|
||||||
|
gcc -shared -o"libtwoFileSO.SOS" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||||
|
@echo 'Finished building target: $@'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
# Other Targets
|
||||||
|
clean:
|
||||||
|
-$(RM) $(OBJS)$(C_DEPS)$(LIBRARIES) libtwoFileSO.SOS
|
||||||
|
-@echo ' '
|
||||||
|
|
||||||
|
.PHONY: all clean dependents
|
||||||
|
.SECONDARY:
|
||||||
|
|
||||||
|
-include ../makefile.targets
|
|
@ -0,0 +1,7 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
USER_OBJS :=
|
||||||
|
|
||||||
|
LIBS :=
|
|
@ -0,0 +1,14 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
O_SRCS :=
|
||||||
|
C_SRCS :=
|
||||||
|
OBJS :=
|
||||||
|
C_DEPS :=
|
||||||
|
LIBRARIES :=
|
||||||
|
|
||||||
|
# Every subdirectory with source files must be described here
|
||||||
|
SUBDIRS := \
|
||||||
|
. \
|
||||||
|
|
|
@ -0,0 +1,29 @@
|
||||||
|
################################################################################
|
||||||
|
# Automatically-generated file. Do not edit!
|
||||||
|
################################################################################
|
||||||
|
|
||||||
|
# Add inputs and outputs from these tool invocations to the build variables
|
||||||
|
C_SRCS += \
|
||||||
|
../so1.c \
|
||||||
|
../so2.c
|
||||||
|
|
||||||
|
OBJS += \
|
||||||
|
./so1.o \
|
||||||
|
./so2.o
|
||||||
|
|
||||||
|
C_DEPS += \
|
||||||
|
./so1.d \
|
||||||
|
./so2.d
|
||||||
|
|
||||||
|
|
||||||
|
# Each subdirectory must supply rules for building sources it contributes
|
||||||
|
%.o: ../%.c
|
||||||
|
@echo 'Building file: $<'
|
||||||
|
@echo 'Invoking: MBS30.compiler.gnu.c'
|
||||||
|
gcc -O0 -g3 -c -v -o"$@" "$<" && \
|
||||||
|
echo -n '$(@:%.o=%.d)' $(dir $@) > '$(@:%.o=%.d)' && \
|
||||||
|
gcc -MM -MG -P -w -O0 -g3 -c -v "$<" >> '$(@:%.o=%.d)'
|
||||||
|
@echo 'Finished building: $<'
|
||||||
|
@echo ' '
|
||||||
|
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue