*** empty log message ***

This commit is contained in:
2007-03-02 10:06:17 +00:00
parent 616e04112e
commit ed79190a0c
7 changed files with 104 additions and 35 deletions

View File

@ -1,6 +1,6 @@
OUT = asecmn
C_SRCS = mem.c str.c rex.c
C_SRCS = mem.c str.c
C_OBJS = $(C_SRCS:.c=.obj)
CC = bcc32

23
ase/cmn/makefile.msw.cl Normal file
View File

@ -0,0 +1,23 @@
OUT = asecmn
C_SRCS = mem.c str.c
C_OBJS = $(C_SRCS:.c=.obj)
CC = cl
LD = link
CFLAGS = /nologo /O2 /MT /W3 /GR- /Za -I../.. -DNDEBUG
all: lib
lib: $(C_OBJS)
$(LD) /lib @<<
/nologo /out:$(OUT).lib $(C_OBJS)
<<
clean:
del $(OBJS) $(OUT).lib *.obj
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) /c $<