From 5eb890d653d69c0fda19471284bd027b5c338de9 Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Tue, 22 May 2012 17:57:29 -0700 Subject: [PATCH] Fix problem performing initial build. --- Makefile | 5 ++++- lib/Makefile | 1 + scripts/Makefile | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7240341..6267750 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,10 @@ SUBDIRS=lib nonlib FL timeline mixer session-manager sequencer -all: .config +all: lib/.built .config + +lib/.built: + @ make -C lib .config: configure ./configure diff --git a/lib/Makefile b/lib/Makefile index 2da753e..f832e50 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -5,6 +5,7 @@ SRCS:= $(wildcard ntk/src/*.cxx ntk/FL/*.H) $(SRCS): ntk/config.h @ echo Building NTK $(MAKE) -C ntk + @ touch .built $(OBJS): $(SRCS) diff --git a/scripts/Makefile b/scripts/Makefile index c6e0657..ac2b9aa 100644 --- a/scripts/Makefile +++ b/scripts/Makefile @@ -62,7 +62,7 @@ INCLUDES += $(FLTK_CFLAGS) # INCLUDES += -// CFLAGS += $(FLTK_CFLAGS) +# CFLAGS += $(FLTK_CFLAGS) # include FL/makefile.inc include makefile.inc