diff options
author | Nick White <git@njw.me.uk> | 2010-07-29 19:09:26 +0100 |
---|---|---|
committer | Nick White <git@njw.me.uk> | 2010-07-29 19:09:26 +0100 |
commit | ca61acd4506afb0125ae64b33f5f90ee198c0f6e (patch) | |
tree | 5025ec5d4bbf8c2494f393e0699ac236fb8e58d6 /makefile | |
parent | 3a4a0d3f39c25adb6bc8ead135ed39634b2bcfbf (diff) |
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
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 32 |
1 files changed, 0 insertions, 32 deletions
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 - |