Skip to content

Commit

Permalink
No C files are generated anymore. Remove corresponding lines in Makef…
Browse files Browse the repository at this point in the history
…ile.library.

--HG--
extra : convert_revision : svn%3A30ab2afb-5f51-4bfe-ae8b-bcb573c66ba7/trunk%4035
  • Loading branch information
evaleev committed Dec 5, 2003
1 parent a52a036 commit bfb3258
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/lib/libderiv/Makefile.library
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ TARGET_HEADERS = libderiv.h
# List all generated routines. Do it in a safe way in case the list is too long
#
TRUESRC1 = $(shell echo `ls *.cc`)
TRUESRC2 = $(shell echo `ls *.c`)
LIBOBJ1 = $(TRUESRC1:%.cc=%.$(OBJSUF))
LIBOBJ2 = $(TRUESRC2:%.c=%.$(OBJSUF))
LIBOBJ = $(LIBOBJ1) $(LIBOBJ2)
LIBOBJ = $(LIBOBJ1)

default:: $(TOPDIR)/lib/$(TARGET) $(TOPDIR)/include/$(NAME)/$(NAME).h

# this is how static library is made
$(TOPDIR)/lib/$(NAME).a: $(LIBOBJ)
/bin/rm -f $@
$(AR) $(ARFLAGS) $@ $(LIBOBJ1)
$(AR) $(ARFLAGS) $@ $(LIBOBJ2)
$(RANLIB) $@

# this is how shared library is made
Expand Down

0 comments on commit bfb3258

Please sign in to comment.