[build] bsd build

This commit is contained in:
Timothy Stack 2013-06-15 17:45:33 -07:00
parent 55bff2abcb
commit eee43efd5a
2 changed files with 8 additions and 8 deletions

View File

@ -6,13 +6,13 @@ noinst_PROGRAMS = bin2c lnav-test
noinst_LIBRARIES = libdiag.a
help.c: $(srcdir)/help.txt bin2c
./bin2c -z -c $< $@
./bin2c -z -c $(srcdir)/help.txt $@
init.sql: $(srcdir)/init_sql.py
$(PYTHON) $< > $@
$(PYTHON) $(srcdir)/init_sql.py > $@
init-sql.c: init.sql bin2c
./bin2c -z -c $< $@
init-sql.c: $(srcdir)/init.sql bin2c
./bin2c -z -c $(srcdir)/init.sql $@
AM_LDFLAGS = \
$(SQLITE3_LDFLAGS) \

View File

@ -1019,13 +1019,13 @@ uninstall-am: uninstall-binPROGRAMS
help.c: $(srcdir)/help.txt bin2c
./bin2c -z -c $< $@
./bin2c -z -c $(srcdir)/help.txt $@
init.sql: $(srcdir)/init_sql.py
$(PYTHON) $< > $@
$(PYTHON) $(srcdir)/init_sql.py > $@
init-sql.c: init.sql bin2c
./bin2c -z -c $< $@
init-sql.c: $(srcdir)/init.sql bin2c
./bin2c -z -c $(srcdir)/init.sql $@
uncrusty:
(cd $(srcdir) && uncrustify -c ../lnav.cfg --replace $(SOURCES) \