From: Nick Bowler Date: Tue, 21 Jun 2011 22:29:12 +0000 (-0400) Subject: Rename libcdecl.c to parse-decl.c X-Git-Tag: v1~176 X-Git-Url: https://git.draconx.ca/gitweb/cdecl99.git/commitdiff_plain/2ca0617e4dd5192c029fa800e00250aaf6248c79 Rename libcdecl.c to parse-decl.c Paving the way for having more than one source file. --- diff --git a/Makefile.am b/Makefile.am index 78688b5..0caecb2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -10,7 +10,7 @@ noinst_HEADERS = src/scan.h src/parse.h lib_LTLIBRARIES = libcdecl.la libcdecl_la_LDFLAGS = -export-symbols-regex '^cdecl_' -libcdecl_la_SOURCES = src/scan.c src/parse.c src/libcdecl.c +libcdecl_la_SOURCES = src/scan.c src/parse.c src/parse-decl.c bin_PROGRAMS = cdecl99 cdecl99_SOURCES = src/cdecl99.c @@ -18,7 +18,7 @@ cdecl99_LDADD = libcdecl.la src/parse.lo: src/scan.h src/scan.lo: src/parse.h -src/libcdecl.lo: src/scan.h src/parse.h +src/parse-decl.lo: src/scan.h src/parse.h # These are required to prevent the builtin lex/yacc rules from # superseding ours... diff --git a/src/libcdecl.c b/src/parse-decl.c similarity index 100% rename from src/libcdecl.c rename to src/parse-decl.c