-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed pparse and pvm from tools, reenabled tools
- Loading branch information
Showing
12 changed files
with
18 additions
and
854 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,33 @@ | ||
all: | ||
cd src; make -f Makefile.gnu | ||
cd tools; make -f Makefile.gnu | ||
# cd examples; make -f Makefile.gnu | ||
# cd DEMO; make -f Makefile.gnu | ||
|
||
clean: | ||
cd src; make -f Makefile.gnu clean | ||
# cd tools; make -f Makefile.gnu clean | ||
cd tools; make -f Makefile.gnu clean | ||
# cd examples; make -f Makefile.gnu clean | ||
# cd DEMO; make -f Makefile.gnu clean | ||
|
||
make_install: | ||
cp Makefile.gnu Makefile | ||
cp src/Makefile.gnu src/Makefile | ||
# cp tools/Makefile.gnu tools/Makefile | ||
cp tools/Makefile.gnu tools/Makefile | ||
# cp examples/Makefile.gnu examples/Makefile | ||
# cp DEMO/Makefile.gnu DEMO/Makefile | ||
|
||
make_update: | ||
cp Makefile Makefile.gnu | ||
cp src/Makefile src/Makefile.gnu | ||
# cp tools/Makefile tools/Makefile.gnu | ||
cp tools/Makefile tools/Makefile.gnu | ||
# cp examples/Makefile examples/Makefile.gnu | ||
# cp DEMO/Makefile DEMO/Makefile.gnu | ||
|
||
make_uninstall: | ||
-rm Makefile | ||
-rm src/Makefile | ||
# -rm tools/Makefile | ||
-rm tools/Makefile | ||
# -rm examples/Makefile | ||
# -rm DEMO/Makefile | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/sh | ||
echo "0.23.0" | ||
echo "0.24.0dev" | ||
|
||
# When changing version number, remove src/version.h to regenerate it! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,7 +99,7 @@ typedef char pboolean; | |
|
||
|
||
|
||
#define LIBPHORWARD_VERSION "0.23.0" | ||
#define LIBPHORWARD_VERSION "0.24.0dev" | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
#define LIBPHORWARD_VERSION "0.23.0" | ||
#define LIBPHORWARD_VERSION "0.24.0dev" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,11 @@ | ||
|
||
bin_PROGRAMS = plex$(EXEEXT) pparse$(EXEEXT) pregex$(EXEEXT) pvm$(EXEEXT) | ||
bin_PROGRAMS = plex$(EXEEXT) pregex$(EXEEXT) | ||
|
||
plex_SOURCES = plex.c util.c | ||
plex_LDADD = ../src/libphorward.la | ||
plex_CFLAGS = -I$(top_srcdir)/src | ||
|
||
pparse_SOURCES = pparse.c util.c | ||
pparse_LDADD = ../src/libphorward.la | ||
pparse_CFLAGS = -I$(top_srcdir)/src | ||
|
||
pregex_SOURCES = pregex.c util.c | ||
pregex_LDADD = ../src/libphorward.la | ||
pregex_CFLAGS = -I$(top_srcdir)/src | ||
|
||
pvm_SOURCES = pvm.c util.c | ||
pvm_LDADD = ../src/libphorward.la | ||
pvm_CFLAGS = -I$(top_srcdir)/src | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.