2001-10-24 07:34:41 +00:00
|
|
|
|
|
|
|
include ../config.mak
|
|
|
|
|
|
|
|
LIBNAME = libosdep.a
|
|
|
|
|
2004-06-25 16:49:53 +00:00
|
|
|
SRCS= shmem.c strsep.c strl.c vsscanf.c scandir.c gettimeofday.c fseeko.c \
|
|
|
|
# timer.c
|
2001-10-24 07:34:41 +00:00
|
|
|
|
|
|
|
ifeq ($(TARGET_ARCH_X86),yes)
|
|
|
|
ifeq ($(TARGET_OS),Linux)
|
|
|
|
SRCS += lrmi.c vbelib.c
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2003-04-04 19:33:18 +00:00
|
|
|
getch = getch2.c
|
|
|
|
timer = timer-lx.c
|
2003-05-21 21:18:29 +00:00
|
|
|
ifeq ($(TARGET_OS),Darwin)
|
|
|
|
timer = timer-darwin.c
|
2003-02-19 17:22:02 +00:00
|
|
|
endif
|
2003-04-04 19:33:18 +00:00
|
|
|
ifeq ($(TARGET_CYGWIN),yes)
|
2003-04-25 10:00:18 +00:00
|
|
|
timer = timer-win2.c
|
2003-04-04 19:33:18 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(TARGET_MINGW32),yes)
|
2003-04-25 10:00:18 +00:00
|
|
|
timer = timer-win2.c
|
2003-04-04 19:33:18 +00:00
|
|
|
getch = getch2-win.c
|
2003-04-25 10:00:18 +00:00
|
|
|
SRCS += glob-win.c
|
2003-04-04 19:33:18 +00:00
|
|
|
endif
|
|
|
|
SRCS += $(timer)
|
|
|
|
SRCS += $(getch)
|
2003-02-19 17:22:02 +00:00
|
|
|
|
|
|
|
OBJS=$(SRCS:.c=.o)
|
|
|
|
|
2003-02-07 22:47:48 +00:00
|
|
|
CFLAGS = $(OPTFLAGS) -I. -I.. $(EXTRA_INC)
|
2001-10-24 07:34:41 +00:00
|
|
|
# -I/usr/X11R6/include/
|
|
|
|
|
|
|
|
.SUFFIXES: .c .o
|
|
|
|
|
|
|
|
# .PHONY: all clean
|
|
|
|
|
|
|
|
.c.o:
|
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
$(LIBNAME): $(OBJS)
|
|
|
|
$(AR) r $(LIBNAME) $(OBJS)
|
2004-06-24 12:52:17 +00:00
|
|
|
$(RANLIB) $(LIBNAME)
|
2001-10-24 07:34:41 +00:00
|
|
|
|
|
|
|
all: $(LIBNAME)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o *.a *~
|
|
|
|
|
|
|
|
distclean:
|
|
|
|
rm -f Makefile.bak *.o *.a *~ .depend
|
|
|
|
|
|
|
|
dep: depend
|
|
|
|
|
|
|
|
depend:
|
|
|
|
$(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
|
|
|
|
|
|
#
|
|
|
|
# include dependency files if they exist
|
|
|
|
#
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
|
|
include .depend
|
|
|
|
endif
|