mirror of
https://github.com/CorsixTH/CorsixTH.git
synced 2025-07-23 04:13:01 +02:00
Added some cmake files to the svn:ignore list. See issue 1293 for more details.
This commit is contained in:
4
.gitignore
vendored
4
.gitignore
vendored
@@ -3,5 +3,9 @@ CorsixTH/config.txt
|
||||
/DataRaw
|
||||
/Debug
|
||||
/LuaJIT
|
||||
MapEdit/CMakeCache.txt
|
||||
MapEdit/CMakeFiles
|
||||
MapEdit/Makefile
|
||||
MapEdit/cmake_install.cmake
|
||||
/SDL
|
||||
/SDL_mixer-1.2.8
|
||||
|
@@ -1,38 +0,0 @@
|
||||
# Makefile for building AnimViewer
|
||||
# This is quite a simple makefile and could probably do with some love from
|
||||
# someone who understands the *nix buildchain better than I do.
|
||||
|
||||
CC= gcc
|
||||
CPP= g++
|
||||
RM= rm -f
|
||||
CFLAGS= `wx-config --cflags`
|
||||
LIBS= `wx-config --libs`
|
||||
|
||||
ALL_T= AnimViewer
|
||||
ALL_O= app.o frmMain.o frmSprites.o rnc.o th.o
|
||||
|
||||
default: all
|
||||
|
||||
all: $(ALL_T)
|
||||
|
||||
clean:
|
||||
$(RM) $(ALL_O) $(ALL_T)
|
||||
|
||||
AnimViewer: $(ALL_O)
|
||||
$(CPP) -o $@ $(ALL_O) $(LIBS)
|
||||
|
||||
app.o:
|
||||
$(CPP) -c app.cpp $(CFLAGS)
|
||||
|
||||
frmMain.o:
|
||||
$(CPP) -c frmMain.cpp $(CFLAGS)
|
||||
|
||||
frmSprites.o:
|
||||
$(CPP) -c frmSprites.cpp $(CFLAGS)
|
||||
|
||||
rnc.o:
|
||||
$(CPP) -c rnc.cpp $(CFLAGS)
|
||||
|
||||
th.o:
|
||||
$(CPP) -c th.cpp $(CFLAGS)
|
||||
|
Reference in New Issue
Block a user