*** empty log message ***
This commit is contained in:
25
ase/utl/makefile.in
Normal file
25
ase/utl/makefile.in
Normal file
@ -0,0 +1,25 @@
|
||||
OUT = aseutl
|
||||
|
||||
C_SRCS = main.c stdio.c
|
||||
C_OBJS = $(C_SRCS:.c=.o)
|
||||
|
||||
CC = @CC@
|
||||
AR = ar
|
||||
RANLIB = @RANLIB@
|
||||
CFLAGS = @CFLAGS@ -I@abs_top_builddir@/..
|
||||
LDFLAGS = @LDFLAGS@
|
||||
LIBS = @LIBS@
|
||||
|
||||
all: lib
|
||||
|
||||
lib: $(C_OBJS)
|
||||
$(AR) cr lib$(OUT).a $(C_OBJS)
|
||||
if [ "$(RANLIB)" = "ranlib" ]; then ranlib libaseawk.a; fi
|
||||
|
||||
clean:
|
||||
rm -rf $(OBJS) lib$(OUT).a *.o
|
||||
|
||||
.SUFFIXES: .c .o
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* $Id: stdio.c,v 1.2 2007-02-20 14:15:18 bacon Exp $
|
||||
* $Id: stdio.c,v 1.3 2007-02-20 14:23:18 bacon Exp $
|
||||
*
|
||||
* {License}
|
||||
*/
|
||||
@ -9,6 +9,11 @@
|
||||
|
||||
#include <wchar.h>
|
||||
#include <stdlib.h>
|
||||
#include <limits.h>
|
||||
|
||||
#ifndef PATH_MAX
|
||||
#define PATH_MAX 2048
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32)
|
||||
|
||||
|
Reference in New Issue
Block a user