From 8ea862474e8fc2993318931cbd4c847c11117b61 Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Mon, 10 Apr 2006 18:49:16 +0000 Subject: [PATCH] Makefile to build chsgen's binary --- chsgen/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 chsgen/Makefile diff --git a/chsgen/Makefile b/chsgen/Makefile new file mode 100644 index 0000000..b75f088 --- /dev/null +++ b/chsgen/Makefile @@ -0,0 +1,10 @@ +TOP=.. + +include $(TOP)/GNUmakef.def + +TARGET=chsgn$(PLATFORM)$(EXE) + +all: $(TARGET) + +$(TARGET): chsgen.cc + $(CXX) $(LNKFLAGS) $(CPPFLAGS) -o $@ $<