diff options
author | bala <balanatarajan@users.noreply.github.com> | 2000-10-13 11:34:32 +0000 |
---|---|---|
committer | bala <balanatarajan@users.noreply.github.com> | 2000-10-13 11:34:32 +0000 |
commit | 7ad407b018d00b4055d97d7cdb22bc8e3ce0321a (patch) | |
tree | 529f824cd5d6267825e688c4ee3a05ec9a2be151 /include/makeinclude/build_dll.bor | |
parent | 0f58a27d4f779332aeb11a37b9cdca53b3c07c1f (diff) | |
download | ATCD-7ad407b018d00b4055d97d7cdb22bc8e3ce0321a.tar.gz |
ChangeLogTag: Fri Oct 13 06:26:18 2000 Balachandran Natarajan <bala@cs.wustl.edu>
Diffstat (limited to 'include/makeinclude/build_dll.bor')
-rw-r--r-- | include/makeinclude/build_dll.bor | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/makeinclude/build_dll.bor b/include/makeinclude/build_dll.bor index b87c2ccfee8..d6dec039d81 100644 --- a/include/makeinclude/build_dll.bor +++ b/include/makeinclude/build_dll.bor @@ -43,6 +43,10 @@ INSTALL_TYPES = dll lib includes .path.cpp = $(CPPDIR) !endif +!ifdef CDIR +.path.c = $(CDIR) +!endif + !ifdef RESDIR .path.rc = $(RESDIR) !else @@ -55,6 +59,10 @@ INSTALL_TYPES = dll lib includes @$(MAKE_OBJDIR) $(CC) $(COMMON_CFLAGS) $(DLL_CFLAGS) $(CFLAGS) -c -n$(@D) $< +.c.obj: + @$(MAKE_OBJDIR) + $(CC) $(COMMON_CFLAGS) $(DLL_CFLAGS) $(CFLAGS) -c -n$(@D) $< + .rc.res: @$(MAKE_OBJDIR) $(RC) -fo$@ $< |