Skip to content

Commit

Permalink
first pass at autoconfing
Browse files Browse the repository at this point in the history
  • Loading branch information
jthornber committed Dec 6, 2011
1 parent bfe2227 commit 1735982
Show file tree
Hide file tree
Showing 5 changed files with 653 additions and 1 deletion.
11 changes: 10 additions & 1 deletion Makefile → Makefile.in
@@ -1,6 +1,11 @@
.PHONEY: all

all: thin_repair thin_dump thin_restore
PROGRAMS=\
thin_repair \
thin_dump \
thin_restore

all: $(PROGRAMS)

SOURCE=\
checksum.cc \
Expand Down Expand Up @@ -55,6 +60,10 @@ thin_restore: $(OBJECTS) thin_restore.o
thin_repair: $(OBJECTS) thin_repair.o
g++ $(CPPFLAGS) -o $@ $+ $(LIBS)

.PHONEY: clean
clean:
rm -f *.o unit-tests/*.o $(TEST_PROGRAMS) $(PROGRAMS)

include unit-tests/Makefile.in
include $(subst .cc,.d,$(SOURCE))
include $(subst .cc,.d,$(TEST_SOURCE))
Expand Down
1 change: 1 addition & 0 deletions VERSION
@@ -0,0 +1 @@
0.0.1-github(0) (2011-12-06)

0 comments on commit 1735982

Please sign in to comment.