diff options
| author | epoch <epoch@hacking.allowed.org> | 2018-02-19 05:59:27 -0600 | 
|---|---|---|
| committer | epoch <epoch@hacking.allowed.org> | 2018-02-19 05:59:27 -0600 | 
| commit | 29c53dc09a6d71acb8e5715fff78e16006980d96 (patch) | |
| tree | 7d6fd52a219149ea30da1c48feaf37dc8c2a3a76 /src | |
| parent | 17d055140312343e74e28af32156e6cf0eb0aae6 (diff) | |
| download | hackvr-29c53dc09a6d71acb8e5715fff78e16006980d96.tar.gz hackvr-29c53dc09a6d71acb8e5715fff78e16006980d96.zip | |
fixed src Makefile to actually create the installation target dirs (-D to install)
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/src/Makefile b/src/Makefile index 58fc2e4..4174f5f 100644 --- a/src/Makefile +++ b/src/Makefile @@ -34,11 +34,11 @@ graphics_cs_opengl.o: LDLIBS=-lm -lGL -lGLU -lglut  math.o: LDLIBS=-lm  install: -	install hackvr $(PREFIX)/bin/hackvr -	install hackvr_headless $(PREFIX)/bin/hackvr_headless -	install hackvr_x11 $(PREFIX)/bin/hackvr_x11 -	install hackvr_fb $(PREFIX)/bin/hackvr_fb -	install slowcat $(PREFIX)/bin/slowcat +	install -D hackvr $(PREFIX)/bin/hackvr +	install -D hackvr_headless $(PREFIX)/bin/hackvr_headless +	install -D hackvr_x11 $(PREFIX)/bin/hackvr_x11 +	install -D hackvr_fb $(PREFIX)/bin/hackvr_fb +	install -D slowcat $(PREFIX)/bin/slowcat  uninstall:  	rm $(PREFIX)/bin/hackvr | 
