diff options
-rw-r--r-- | trans/Makefile | 1 | ||||
-rw-r--r-- | utils/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/trans/Makefile b/trans/Makefile index 57c48e73..73bed80a 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -19,6 +19,7 @@ dir := trans makemode := servers SRCS = ifsock.c symlink.c magic.c null.c +OBJS = $(subst .c,.o,$(SRCS)) fsysServer.o error.o targets = symlink ifsock magic null CPPFLAGS += -I../lib diff --git a/utils/Makefile b/utils/Makefile index 80099775..213d03f2 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -19,6 +19,7 @@ dir := utils makemode := utilities SRCS = shd.c ps.c su.c settrans.c clri.c sync.c reboot.c halt.c showtrans.c mount.sh fsysopts.c +OBJS = $(subst .c,.o,$(SRCS)) argz.o error.o targets = shd ps settrans showtrans clri sync reboot halt su mount fsysopts DIST_FILES = sh.ChangeLog |