Skip to content

Commit

Permalink
Added clean rule.
Browse files Browse the repository at this point in the history
  • Loading branch information
deplinenoise committed Nov 28, 2011
1 parent e6428d1 commit d2cf4c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions make.rules
Expand Up @@ -7,11 +7,16 @@ vlinkobjects = $(DIR)/main.o $(DIR)/support.o $(DIR)/errors.o \
$(DIR)/t_aout.o $(DIR)/t_aoutnull.o $(DIR)/t_aoutm68k.o \
$(DIR)/t_aouti386.o $(DIR)/t_aoutmint.o $(DIR)/t_ataritos.o \
$(DIR)/t_rawbin.o $(DIR)/t_vobj.o
all: $(TARGET)

$(TARGET): $(vlinkobjects)
$(CC) $(CCOUT)$(DIR)/version.o $(COPTS) $(CONFIG) version.c
$(LD) $(LDOUT)$(TARGET) $(LDOPTS) $(vlinkobjects) $(DIR)/version.o $(LIBS)

clean:
rm -f $(TARGET)
find . -name \*.o -exec rm {} \;

vlink.pdf: vlink.texi
texi2dvi --pdf vlink.texi
rm -f vlink.aux vlink.log vlink.pg vlink.toc vlink.vr vlink.cp vlink.fn vlink.ky vlink.tp
Expand Down

0 comments on commit d2cf4c5

Please sign in to comment.