diff options
author | Roland McGrath <roland@redhat.com> | 1992-05-09 04:02:30 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1992-05-09 04:02:30 +0000 |
commit | 276016fba74fa37f2592f50c4e7b1066aab511de (patch) | |
tree | b3915c0c7f3e9c7349cf050690387d80ebe5ef38 | |
parent | d9dedc8f27fef12a82e9b411a245e73f25ffb26f (diff) | |
download | gunmake-276016fba74fa37f2592f50c4e7b1066aab511de.tar.gz |
Formerly compatMakefile.~22~
-rw-r--r-- | compatMakefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/compatMakefile b/compatMakefile index 6a87e8a..2e83b0f 100644 --- a/compatMakefile +++ b/compatMakefile @@ -61,6 +61,11 @@ LOAD_AVG = ARCHIVES = arscan.o ar.o ARCHIVES_SRC = arscan.c ar.c +# If you are using the GNU C library, or have the GNU getopt functions in +# your C library, you can comment these out. +GETOPT = getopt.o getopt1.o +GETOPT_SRC = getopt.c getopt1.c getopt.h + # If your system needs extra libraries loaded in, define them here. # System V probably need -lPW for alloca. HP-UX 7.0's alloca in # libPW.a is broken on HP9000s300 and HP9000s400 machines. Use @@ -105,10 +110,10 @@ group = kmem objs = commands.o job.o dir.o file.o load.o misc.o main.o read.o \ remake.o remote.o rule.o implicit.o default.o variable.o expand.o \ - function.o vpath.o version.o $(ARCHIVES) $(ALLOCA) $(extras) + function.o vpath.o version.o $(ARCHIVES) $(GETOPT) $(ALLOCA) $(extras) srcs = commands.c job.c dir.c file.c load.c misc.c main.c read.c \ remake.c remote.c rule.c implicit.c default.c variable.c expand.c \ - function.c vpath.c version.c $(ALLOCASRC) $(ARCHIVES_SRC) \ + function.c vpath.c version.c $(GETOPT_SRC) $(ALLOCASRC) $(ARCHIVES_SRC)\ commands.h dep.h file.h job.h make.h rule.h variable.h |