Browse Source

added comment re. GNU Make requirement to lib/Makefile

master
Svend Sorensen 20 years ago
parent
commit
79da2d8722
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      lib/Makefile

+ 6
- 2
lib/Makefile View File

@@ -1,16 +1,20 @@
YFLAGS+= -d
LEX=flex

TARGETS= libcuefile.a
OBJS= cd.o cdtext.o time.o cuefile.o
CUE_OBJS= cue_parse.o cue_scan.o cue_print.o
TOC_OBJS= toc_parse.o toc_scan.o toc_print.o

# There are multiple scanners/parsers
# so we need a prefix to aviod conflicts.
# (NOTE: these lines require GNU Make)

toc_scan.c: LFLAGS+= -Ptoc_yy
cue_scan.c: LFLAGS+= -Pcue_yy
toc_parse.c: YFLAGS+= -p toc_yy
cue_parse.c: YFLAGS+= -p cue_yy

TARGETS= libcuefile.a

all: $(TARGETS)

libcuefile.a: libcuefile.a($(OBJS) $(CUE_OBJS) $(TOC_OBJS))


Loading…
Cancel
Save