Skip to content

Commit

Permalink
Merge pull request #571 from igor725/master
Browse files Browse the repository at this point in the history
getsha.bat is no longer needed
  • Loading branch information
UnknownShadow200 committed Mar 11, 2019
2 parents e188746 + 4e36ae8 commit 47f9d72
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -31,7 +31,7 @@ bld/
[sS]rc/options.txt
[sS]rc/ClassiCube*
[sS]rc/screenshots

[sS]rc/fontscache.txt
#GCC object files
*.o

Expand Down
4 changes: 2 additions & 2 deletions src/Makefile
@@ -1,9 +1,9 @@
CC=gcc
LIBS=-lGL -lcurl -lopenal -lpthread -lX11 -lm -ldl
LIBS=-lX11 -lpthread -lGL -lm -lcurl -lopenal -ldl
CFLAGS=-g -w -no-pie -rdynamic -pipe
SOURCES=$(wildcard *.c)
OBJECTS=$(patsubst %.c, %.o, $(SOURCES))
COMMITSHA=$(shell git rev-parse HEAD | cut -c '1-7')
COMMITSHA=$(shell git rev-parse --short HEAD)

EXECUTABLE=ClassiCube

Expand Down
4 changes: 2 additions & 2 deletions src/Makefile.win
@@ -1,9 +1,9 @@
CC=gcc
LIBS=-mwindows -lws2_32 -lwininet -lwinmm -limagehlp -ld3d9 -lcrypt32
LIBS=-mwindows -lws2_32 -lwininet -lwinmm -limagehlp -lcrypt32 -ld3d9
CFLAGS=-g -w -pipe
SOURCES=$(wildcard *.c)
OBJECTS=$(patsubst %.c, %.o, $(SOURCES))
COMMITSHA=$(shell getsha)
COMMITSHA=$(shell git rev-parse --short HEAD)

EXECUTABLE=ClassiCube

Expand Down
3 changes: 0 additions & 3 deletions src/getsha.bat

This file was deleted.

0 comments on commit 47f9d72

Please sign in to comment.