summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in27
1 files changed, 19 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in
index 66b3689260..7cb2829dce 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -53,11 +53,14 @@ SRCS = array.c \
etc.c \
eval.c \
file.c \
+ fnmatch.c \
gc.c \
+ glob.c \
+ gnuglob.c \
inits.c \
io.c \
+ main.c \
math.c \
- methods.c \
missing.c \
numeric.c \
object.c \
@@ -91,11 +94,14 @@ OBJS = array.o \
etc.o \
eval.o \
file.o \
+ fnmatch.o \
gc.o \
+ glob.o \
+ gnuglob.o \
inits.o \
io.o \
+ main.o \
math.o \
- methods.o \
missing.o \
numeric.o \
object.o \
@@ -128,9 +134,11 @@ $(PROGRAM): $(OBJS)
@rm -f $(PROGRAM)
$(CC) $(LDFLAGS) $(OBJS) $(LIBS) -o $(PROGRAM)
-install: $(PROGMAM)
+$(bindir)/$(PROGRAM): $(PROGRAM)
$(INSTALL_PROGRAM) $(PROGRAM) $(bindir)/$(PROGRAM)
+install: $(bindir)/$(PROGRAM)
+
clean:; @rm -f $(OBJS)
realclean:; @rm -f $(OBJS)
@@ -142,7 +150,7 @@ dbm.o:dbm.c
# Prevent GNU make v3 from overflowing arg limit on SysV.
.NOEXPORT:
###
-parse.o : parse.y ruby.h defines.h env.h ident.h node.h st.h regex.h
+parse.o : parse.y ruby.h defines.h env.h node.h st.h ident.h regex.h
###
array.o : array.c ruby.h defines.h
bignum.o : bignum.c ruby.h defines.h
@@ -155,24 +163,27 @@ dln.o : dln.c defines.h dln.h
enum.o : enum.c ruby.h defines.h
error.o : error.c ruby.h defines.h env.h
etc.o : etc.c ruby.h defines.h
-eval.o : eval.c ruby.h defines.h env.h node.h ident.h st.h
+eval.o : eval.c ruby.h defines.h ident.h env.h node.h methods.h st.h
file.o : file.c ruby.h defines.h io.h
+fnmatch.o : fnmatch.c fnmatch.h
gc.o : gc.c ruby.h defines.h env.h st.h
+glob.o : glob.c ruby.h defines.h fnmatch.h
+gnuglob.o : gnuglob.c fnmatch.h
inits.o : inits.c ruby.h defines.h
io.o : io.c ruby.h defines.h io.h
+main.o : main.c
math.o : math.c ruby.h defines.h
-methods.o : methods.c ruby.h defines.h ident.h env.h node.h methods.h
missing.o : missing.c ruby.h defines.h missing/memmove.c missing/strerror.c \
missing/strtoul.c missing/strftime.c missing/strstr.c missing/getopt.h missing/getopt.c \
missing/getopt1.c missing/mkdir.c
-numeric.o : numeric.c ruby.h defines.h env.h
+numeric.o : numeric.c ruby.h defines.h
object.o : object.c ruby.h defines.h env.h node.h st.h
pack.o : pack.c ruby.h defines.h
process.o : process.c ruby.h defines.h st.h
random.o : random.c ruby.h defines.h
range.o : range.c ruby.h defines.h
re.o : re.c ruby.h defines.h re.h regex.h
-regex.o : regex.c regex.h
+regex.o : regex.c defines.h regex.h
ruby.o : ruby.c ruby.h defines.h re.h regex.h missing/getopt.h
socket.o : socket.c ruby.h defines.h
sprintf.o : sprintf.c ruby.h defines.h