summaryrefslogtreecommitdiff
path: root/user/unix
diff options
context:
space:
mode:
Diffstat (limited to 'user/unix')
-rw-r--r--user/unix/.cvsignore2
-rw-r--r--user/unix/Makefile.in29
2 files changed, 8 insertions, 23 deletions
diff --git a/user/unix/.cvsignore b/user/unix/.cvsignore
index f3c7a7c5d..06e18a7aa 100644
--- a/user/unix/.cvsignore
+++ b/user/unix/.cvsignore
@@ -1 +1,3 @@
Makefile
+*.lo
+.libs
diff --git a/user/unix/Makefile.in b/user/unix/Makefile.in
index 22642134b..300adbdab 100644
--- a/user/unix/Makefile.in
+++ b/user/unix/Makefile.in
@@ -1,28 +1,11 @@
-RM=@RM@
-CC=@CC@
-RANLIB=@RANLIB@
-CFLAGS=@CFLAGS@ @OPTIM@
-LIBS=@LIBS@
-LDFLAGS=@LDFLAGS@ $(LIBS)
-INCDIR=../../include
-DEFOSDIR=$(INCDIR)/arch/@DEFAULT_OSDIR@
-INCLUDES=-I$(INCDIR) -I$(DEFOSDIR)
-MKDEP=../../helpers/mkdep.sh
-
-OBJS=homedir.o
-
-.c.o:
- $(CC) $(CFLAGS) -c $(INCLUDES) $<
-all: $(OBJS)
+TARGETS = homedir.lo
-clean:
- $(RM) -f *.o *.a *.so
+# bring in rules.mk for standard functionality
+@INCLUDE_RULES@
-distclean: clean
- -$(RM) -f Makefile
-
-depend:
- $(MKDEP) $(INCLUDES) $(CFLAGS) *.c
+INCDIR=../../include
+DEFOSDIR=$(INCDIR)/arch/@DEFAULT_OSDIR@
+INCLUDES=-I$(INCDIR) -I$(DEFOSDIR)
# DO NOT REMOVE