Apparently forgot about the .so suffix
This commit is contained in:
parent
3f54a9f044
commit
8cbf1bae34
2 changed files with 5 additions and 5 deletions
|
@ -6,12 +6,12 @@
|
|||
|
||||
SRC_DIR = $(SRC_HOME)/lang/cem/libcc.ansi
|
||||
|
||||
.SUFFIXES: .o .e .c .m .s
|
||||
.SUFFIXES: .o .e .c .m .s .so
|
||||
|
||||
.c.o .c.m .c.s:
|
||||
.c.o .c.m .c.s .c.so:
|
||||
$(MACH) $(MACHFL) -ansi -c $<
|
||||
|
||||
.e.o .e.m .e.s:
|
||||
.e.o .e.m .e.s .e.so:
|
||||
$(MACH) $(MACHFL) -c $<
|
||||
|
||||
fake:
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
|
||||
SRC_DIR = $(SRC_HOME)/lang/fortran/lib
|
||||
|
||||
.SUFFIXES: .o .e .c .m .s
|
||||
.SUFFIXES: .o .e .c .m .s .so
|
||||
|
||||
.c.o .c.m .c.s .e.o .e.m .e.s:
|
||||
.c.o .c.m .c.s .c.so .e.o .e.m .e.s .e.so:
|
||||
$(MACH) $(MACHFL) -DSkip_f2c_Undefs -ansi -DNON_UNIX_STDIO -wo -c $<
|
||||
|
||||
fake:
|
||||
|
|
Loading…
Reference in a new issue