diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:18:52 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-08 04:18:52 +0000 |
commit | 6a83373eb86eec673be2d24fe840a9bce97fcaaa (patch) | |
tree | 5af649b83e4681c1da7b99fb6f15025d6e04c7a2 /Makefile.in | |
parent | Adding upstream version 0.8. (diff) | |
download | zutils-6a83373eb86eec673be2d24fe840a9bce97fcaaa.tar.xz zutils-6a83373eb86eec673be2d24fe840a9bce97fcaaa.zip |
Adding upstream version 0.9~rc1.upstream/0.9_rc1
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 4a04228..2fc8ccb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -51,6 +51,12 @@ ztest : ztest.in cat $(VPATH)/ztest.in > ztest chmod a+x ztest +main.o : main.cc + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DGREP=\"$(GREP)\" -c -o $@ $< + +zdiff.o : zdiff.cc + $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DDIFF=\"$(DIFF)\" -c -o $@ $< + zutils.o : zutils.cc $(CXX) $(CPPFLAGS) $(CXXFLAGS) -DPROGVERSION=\"$(pkgversion)\" -c -o $@ $< |