From 3e356c2cae954440f777a25fe5b3c95734d13f40 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 6 Oct 2012 01:24:17 +0200 Subject: [PATCH] Line-wrap the Makefile a bit. --- Makefile | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7f7e7c1..8b8b655 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,23 @@ CC=gcc CXX=g++ CXXFLAGS=-Wall -g LDFLAGS=-lSDL -lSDL_image -lGL + +# Core. OBJS=main.o util.o widgets.o effect.o effect_chain.o input.o -OBJS += lift_gamma_gain_effect.o gamma_expansion_effect.o gamma_compression_effect.o colorspace_conversion_effect.o saturation_effect.o vignette_effect.o mirror_effect.o blur_effect.o diffusion_effect.o glow_effect.o mix_effect.o sandbox_effect.o + +# Effects. +OBJS += lift_gamma_gain_effect.o +OBJS += gamma_expansion_effect.o +OBJS += gamma_compression_effect.o +OBJS += colorspace_conversion_effect.o +OBJS += saturation_effect.o +OBJS += vignette_effect.o +OBJS += mirror_effect.o +OBJS += blur_effect.o +OBJS += diffusion_effect.o +OBJS += glow_effect.o +OBJS += mix_effect.o +OBJS += sandbox_effect.o test: $(OBJS) $(CXX) -o test $(OBJS) $(LDFLAGS) -- 2.39.2