Commit 8232cbda authored by Jeff Smith's avatar Jeff Smith Committed by Alexandre Julliard

Add 'distclean' target to winemaker-generated projects.

parent f88d00a2
...@@ -3085,6 +3085,7 @@ OBJS = $(C_SRCS:.c=.o) $(CXX_SRCS:.cpp=.o) \ ...@@ -3085,6 +3085,7 @@ OBJS = $(C_SRCS:.c=.o) $(CXX_SRCS:.cpp=.o) \
CLEAN_FILES = *.spec.c y.tab.c y.tab.h lex.yy.c \ CLEAN_FILES = *.spec.c y.tab.c y.tab.h lex.yy.c \
core *.orig *.rej \ core *.orig *.rej \
\\\#*\\\# *~ *% .\\\#* \\\#*\\\# *~ *% .\\\#*
DISTCLEAN_FILES = config.* Makefile Make.rules
# Implicit rules # Implicit rules
...@@ -3125,6 +3126,11 @@ $(EXTRASUBDIRS:%=%/__clean__): dummy ...@@ -3125,6 +3126,11 @@ $(EXTRASUBDIRS:%=%/__clean__): dummy
clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__) clean:: $(SUBDIRS:%=%/__clean__) $(EXTRASUBDIRS:%=%/__clean__)
$(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(OBJS) $(EXES:%.exe=%) $(EXES:%=%.so) $(EXES:%=%.spec.o) $(DLLS:%=%.so) $(DLLS:%=%.spec.o) $(RM) $(CLEAN_FILES) $(RC_SRCS:.rc=.res) $(OBJS) $(EXES:%.exe=%) $(EXES:%=%.so) $(EXES:%=%.spec.o) $(DLLS:%=%.so) $(DLLS:%=%.spec.o)
# Rule for distcleaning
distclean: clean
$(RM) $(DISTCLEAN_FILES)
# Rules for installing # Rules for installing
$(SUBDIRS:%=%/__install__): dummy $(SUBDIRS:%=%/__install__): dummy
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment