Fix problem performing initial build.
This commit is contained in:
parent
6ae771b297
commit
5eb890d653
5
Makefile
5
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
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ INCLUDES += $(FLTK_CFLAGS)
|
|||
|
||||
# INCLUDES +=
|
||||
|
||||
// CFLAGS += $(FLTK_CFLAGS)
|
||||
# CFLAGS += $(FLTK_CFLAGS)
|
||||
|
||||
# include FL/makefile.inc
|
||||
include makefile.inc
|
||||
|
|
Loading…
Reference in New Issue