diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-01-19 21:16:46 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-01-19 21:16:46 +0000 |
commit | 0d82e720ced65d48e43a3ca566201df580715ae3 (patch) | |
tree | 2a27e7d98925547229753ccd5e0901bc7cce5c16 /bin | |
parent | c4f789c7a8d7d8b9ad76044a3e441e3ba24a9dc3 (diff) | |
download | ATCD-0d82e720ced65d48e43a3ca566201df580715ae3.tar.gz |
*** empty log message ***
Diffstat (limited to 'bin')
-rw-r--r-- | bin/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/Makefile b/bin/Makefile index b7a6dc9af22..ccab1bfdfbd 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -10,18 +10,18 @@ include $(ACE_ROOT)/include/makeinclude/platform_macros.GNU CFILES = clone.cpp OFILES = clone.o DFLAGS = -b elf -CFLAGS = $(CCFLAGS) -I$(ACE_ROOT) +CCFLAGS += -I$(ACE_ROOT) ############################################################################# # C++ directives .SUFFIXES: .cpp .cpp.o: - $(CXX) $(CFLAGS) -c $< + $(CXX) $(CCFLAGS) -c $< ############################################################################# clone: $(OFILES) - $(CXX) $(CFLAGS) -o $@ $(OFILES) + $(CXX) $(CCFLAGS) -o $@ $(OFILES) clean: -/bin/rm -f *.o *.out *~ core |