This commit is contained in:
Keno Fischer 2012-05-24 23:45:59 -04:00
commit 7ba666f854
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ default: all
$(CC) $(filter -f% -m% -B% -I% -D%,$(CFLAGS)) -c $< -o $@
clean:
rm -f *.o *~
rm -f *.o *.c.o *.S.o *~
# OS-specific stuff
OS = $(shell uname)

View File

@ -1,5 +1,5 @@
include ../Make.inc
SRCS= b_exp.o b_log.o b_tgamma.o
SRCS= b_exp.c.o b_log.c.o b_tgamma.c.o
all: $(SRCS)