Skip to content
This repository has been archived by the owner on Jan 27, 2022. It is now read-only.

Commit

Permalink
Cleanup of old files.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsmmr committed Nov 27, 2010
1 parent 6a71cf7 commit 7c35dc2
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 1,490 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Broccoli is copyright (C) 2000-2009 Christian Kreibich <christian@icir.org>.
Broccoli is copyright (C) 2000-2010 Christian Kreibich <christian@icir.org>.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
Expand Down
28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#
# A simple static wrapper for a number of standard Makefile targets,
# mostly just forwarding to build/Makefile. This is provided only for
# convenience and supports only a subset of what CMake's Makefile
# to offer. For more, execute that one directly.
#

BUILD=build

all: configured
( cd $(BUILD) && make )

install: configured
( cd $(BUILD) && make install )

clean: configured
( cd $(BUILD) && make clean )

dist: configured
( cd $(BUILD) && make package_source )

distclean:
rm -rf $(BUILD)

.PHONY : configured
configured:
@test -d $(BUILD) || ( echo "Error: No build/ directory found. Did you run configure?" && exit 1 )
@test -e $(BUILD)/Makefile || ( echo "Error: No build/Makefile found. Did you run configure?" && exit 1 )
20 changes: 0 additions & 20 deletions Makefile.am

This file was deleted.

Empty file removed NEWS
Empty file.
131 changes: 0 additions & 131 deletions autogen.sh

This file was deleted.

Loading

0 comments on commit 7c35dc2

Please sign in to comment.