*** empty log message ***
This commit is contained in:
		@ -1,6 +1,6 @@
 | 
				
			|||||||
SRCS = \
 | 
					SRCS = \
 | 
				
			||||||
	stx.c memory.c object.c symbol.c class.c \
 | 
						stx.c memory.c object.c symbol.c class.c \
 | 
				
			||||||
	hash.c misc.c context.c token.c parser.c bootstrp.c
 | 
						hash.c misc.c context.c name.c token.c parser.c bootstrp.c
 | 
				
			||||||
OBJS = $(SRCS:.c=.obj)
 | 
					OBJS = $(SRCS:.c=.obj)
 | 
				
			||||||
OUT = xpstx.lib
 | 
					OUT = xpstx.lib
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
							
								
								
									
										20
									
								
								ase/test/stx/makefile.cl
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								ase/test/stx/makefile.cl
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,20 @@
 | 
				
			|||||||
 | 
					CC = cl
 | 
				
			||||||
 | 
					CFLAGS = /nologo /MT /GX /W3 /GR- /D_WIN32_WINNT=0x0400 -I..\..\..
 | 
				
			||||||
 | 
					LDFLAGS = /libpath:..\..\bas /libpath:..\..\stx
 | 
				
			||||||
 | 
					LIBS = xpbas.lib xpstx.lib
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					all: stx parser
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					stx: stx.obj
 | 
				
			||||||
 | 
						link /nologo /out:stx.exe $(LDFLAGS) $(LIBS) stx.obj
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					parser: parser.obj
 | 
				
			||||||
 | 
						link /nologo /out:parser.exe $(LDFLAGS) $(LIBS) parser.obj
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					clean:
 | 
				
			||||||
 | 
						del $(OBJS) *.obj stx.exe parser.exe
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.SUFFIXES: .c .obj
 | 
				
			||||||
 | 
					.c.obj:
 | 
				
			||||||
 | 
						$(CC) /c $(CFLAGS) $< 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		Reference in New Issue
	
	Block a user