summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile32
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
-