Skip to content

Commit

Permalink
Add clean target which removes standard targets
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Schumann committed Oct 10, 1999
1 parent f2608c3 commit ea567a7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion TSRM/build.mk
Expand Up @@ -16,7 +16,12 @@ makefile_am_files = Makefile.am
makefile_in_files = $(makefile_am_files:.am=.in) makefile_in_files = $(makefile_am_files:.am=.in)
makefile_files = $(makefile_am_files:e.am=e) makefile_files = $(makefile_am_files:e.am=e)


all: $(makefile_in_files) $(LT_TARGETS) configure $(config_h_in) targets = $(makefile_in_files) $(LT_TARGETS) configure $(config_h_in)

all: $(targets)

clean:
rm -f $(targets)


$(LT_TARGETS): $(LT_TARGETS):
rm -f $(LT_TARGETS) rm -f $(LT_TARGETS)
Expand Down
7 changes: 6 additions & 1 deletion Zend/build.mk
Expand Up @@ -16,7 +16,12 @@ makefile_am_files = Makefile.am
makefile_in_files = $(makefile_am_files:.am=.in) makefile_in_files = $(makefile_am_files:.am=.in)
makefile_files = $(makefile_am_files:e.am=e) makefile_files = $(makefile_am_files:e.am=e)


all: $(makefile_in_files) $(LT_TARGETS) configure $(config_h_in) targets = $(makefile_in_files) $(LT_TARGETS) configure $(config_h_in)

all: $(targets)

clean:
rm -f $(targets)


$(LT_TARGETS): $(LT_TARGETS):
rm -f $(LT_TARGETS) rm -f $(LT_TARGETS)
Expand Down

0 comments on commit ea567a7

Please sign in to comment.