*** empty log message ***

This commit is contained in:
hyung-hwan 2005-05-10 16:08:10 +00:00
parent 720c4c2777
commit c38f9c0f48
2 changed files with 23 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: macros.h,v 1.23 2005-05-02 11:14:59 bacon Exp $
* $Id: macros.h,v 1.24 2005-05-10 16:08:10 bacon Exp $
*/
#ifndef _XP_MACROS_H_
@ -20,7 +20,7 @@
#define xp_offsetof(type,member) ((xp_size_t)&((type*)0)->member)
#if defined(_WIN32) && defined(XP_CHAR_IS_WCHAR)
#if defined(_WIN32) && defined(XP_CHAR_IS_WCHAR) && !defined(__LCC__)
#define xp_main wmain
#elif defined(XP_CHAR_IS_MCHAR)
#define xp_main main

21
ase/test/stx/makefile.lcc Normal file
View File

@ -0,0 +1,21 @@
SRCS = stx.c
OBJS = stx.obj
OUT = stx.exe
CC = lcc
CFLAGS = -I../../..
#LDFLAGS = -L../../../xp/bas -L../../../xp/stx
#LIBS = -lxpstx -lxpbas
LIBS = ..\..\..\xp\bas\xpbas.lib ..\..\..\xp\stx\xpstx.lib
all: $(OBJS)
lcclnk -o $(OUT) $(OBJS) $(LIBS)
clean:
del $(OBJS) *.obj $(OUT)
.SUFFIXES: .c .obj
.c.obj:
$(CC) $(CFLAGS) -c $<
#$(LIBS) -o $@