From ca61acd4506afb0125ae64b33f5f90ee198c0f6e Mon Sep 17 00:00:00 2001 From: Nick White Date: Thu, 29 Jul 2010 19:09:26 +0100 Subject: Simplify things alot, and add zoom and fullscreen Added some documentation Improved build system Consolidated code into spout.c Added fullscreen option Added zoom option Removed unneeded functions --- makefile | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile deleted file mode 100644 index 4b7cc36..0000000 --- a/makefile +++ /dev/null @@ -1,32 +0,0 @@ -# spout -# SDLÍÑmakefile - -.SUFFIXES: .o .c - -SDL_LIB = /usr/local/lib -SDL_INCLUDE = /usr/local/include/SDL - -CC = gcc -CFLAGS = -I$(SDL_INCLUDE) -O2 -mno-cygwin - -LD = gcc -LDFLAGS = -L$(SDL_LIB) -L. -lmingw32 -lSDLmain -lSDL -mwindows - -PRGNAME = spout -OBJS = spout.o piece.o - - -$(PRGNAME).exe: $(OBJS) - $(LD) $(CFLAGS) -o $(PRGNAME).exe $(OBJS) $(RES) $(LDFLAGS) -.c.o: - $(CC) $(CFLAGS) -c -o $@ $< - -spout.o: piece.h font.h sintable.h -piece.c: piece.h - -clean: - rm -f $(PRGNAME).exe *.o - -run: $(PRGNAME).exe - $(PRGNAME).exe - -- cgit v1.2.3