Browse Source

Fix problem performing initial build.

tags/non-daw-v1.2.0
Jonathan Moore Liles 13 years ago
parent
commit
5eb890d653
3 changed files with 6 additions and 2 deletions
  1. +4
    -1
      Makefile
  2. +1
    -0
      lib/Makefile
  3. +1
    -1
      scripts/Makefile

+ 4
- 1
Makefile View File

@@ -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


+ 1
- 0
lib/Makefile View File

@@ -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)



+ 1
- 1
scripts/Makefile View File

@@ -62,7 +62,7 @@ INCLUDES += $(FLTK_CFLAGS)

# INCLUDES +=

// CFLAGS += $(FLTK_CFLAGS)
# CFLAGS += $(FLTK_CFLAGS)

# include FL/makefile.inc
include makefile.inc


Loading…
Cancel
Save