-- [Fix] Fixed custom makefiles to correspond with the current project.

This commit is contained in:
Rtch90 2011-10-25 22:44:58 +01:00
parent 664ca21c93
commit 756b86ee58
3 changed files with 2 additions and 3 deletions

View File

@ -22,4 +22,4 @@ static:
clean: clean:
$(MAKE) -C ../src/libUnuk clean $(MAKE) -C ../src/libUnuk clean
$(MAKE) -C ../src/Unuk clean $(MAKE) -C ../src/Unuk clean
rm -f Unuk Debug.log ../Data/Debug.log ../Unuk-QT/Unuk-QT rm -f Unuk Debug.log ../Data/Debug.log ../Unuk-QT/Unuk-QT

View File

@ -18,4 +18,3 @@ all: $(objects)
clean: clean:
rm -f $(objects) rm -f $(objects)

View File

@ -1,7 +1,7 @@
CC = g++ CC = g++
CFLAGS = -ansi -Wall -g CFLAGS = -ansi -Wall -g
LDADD = -lGL -lGLU -lSDL LDADD = -lGL -lGLU -lSDL
objects = Debug.o GlxWindow.o ImageLoader.o Sprite.o Vec2.o Input.o\ objects = Debug.o Entity.o ImageLoader.o Sprite.o Input.o \
.PHONY: default all clean .PHONY: default all clean