Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 8213 → Rev 8214

/contrib/sdk/sources/SDL-1.2.2_newlib/src/SYSCALL/src/Makefile
7,12 → 7,12
 
INCLUDES = -I ../include -I $(SDK_DIR)/sources/newlib/libc/include
 
FITZ_SRC := $(notdir $(wildcard *.c))
OBJECTS = $(patsubst %.c, %.o, $(FITZ_SRC))
SYSCALL_SRC := $(notdir $(wildcard *.c))
OBJECTS = $(patsubst %.c, %.o, $(SYSCALL_SRC))
 
default: $(patsubst %.c,%.o,$(FITZ_SRC))
default: $(patsubst %.c,%.o,$(SYSCALL_SRC))
 
%.o : %.c Makefile $(FITZ_SRC)
%.o : %.c Makefile $(SYSCALL_SRC)
$(CC) $(CFLAGS) $(INCLUDES) -o $@ $<
 
clean:
/contrib/sdk/sources/SDL-1.2.2_newlib/src/thread/SDL_systhread_c.h
26,4 → 26,4
/* Stub until we implement threads on this platform */
typedef int SYS_ThreadHandle;
 
#define DISABLE_THREADS
//#define DISABLE_THREADS
/contrib/sdk/sources/SDL-1.2.2_newlib/src/video/SDL_gamma.c
29,6 → 29,7
#include <math.h>
#endif
#include <stdlib.h>
#include <string.h>
 
#include "SDL_error.h"
#include "SDL_sysvideo.h"