Skip to content

Commit

Permalink
Fix installation
Browse files Browse the repository at this point in the history
  • Loading branch information
deric committed Feb 20, 2021
1 parent 31f0054 commit 7c7dc44
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
build/*
lite
19 changes: 11 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PREFIX ?= /usr/local
PREFIX ?= $(HOME)/.local
TARGET ?= lite

OBJ_DIR ?= $(shell pwd)/build
Expand All @@ -16,12 +16,12 @@ CC := gcc
CFLAGS ?=
LDLAGS ?=

CFLAGS +=-Wall -O3 -g -std=gnu11 -fno-strict-aliasing -Isrc -fPIC -DLUA_COMPAT_ALL
LDFLAGS +=-lSDL2 -lm
CFLAGS +=-Wall -O3 -g -std=gnu11 -fno-strict-aliasing -Isrc
LDFLAGS +=-lSDL2 -lm -ldl

UNAME := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
CFLAGS +=-DLUA_USE_POSIX
CFLAGS +=-DLUA_USE_POSIX -fPIC -DLUA_COMPAT_ALL
endif

all: $(TARGET)
Expand All @@ -30,7 +30,7 @@ $(TARGET): $(OBJECTS)
$(CC) $^ -o $@ $(LDFLAGS)

$(OBJ_DIR)/%$(OBJ_EXT): $(SRC_DIR)/%$(SRC_EXT)
mkdir -p $(dir $@)
@mkdir -p $(dir $@)
$(CC) -c $(CFLAGS) $< -o $@

clean:
Expand All @@ -39,7 +39,10 @@ clean:
.PHONY: clean

install: all
@echo Installing to $(DESTDIR)$(PREFIX) ...
@mkdir -p $(DESTDIR)$(PREFIX)/bin/
@cp -fp $(TARGET) $(DESTDIR)$(PREFIX)/bin/
@echo Installing to $(PREFIX) ...
@mkdir -p $(PREFIX)/bin/
@cp -fp $(TARGET) $(PREFIX)/bin/
@mkdir -p $(PREFIX)/bin/data
@echo Copying lua files to $(PREFIX)/bin/data
@cp -r data/* $(PREFIX)/bin/data/
@echo Complete.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ You can build the project yourself on Linux with following prerequisites:
```
sudo apt install libsdl2-dev gcc make
make
sudo make install PREFIX=/usr/local
```

### Windows
Expand Down

0 comments on commit 7c7dc44

Please sign in to comment.