summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorepoch <epoch@thebackupbox.net>2020-04-12 23:57:34 -0500
committerepoch <epoch@thebackupbox.net>2020-04-12 23:57:34 -0500
commitebc7381301c06c31933d11ff3e2b68ca005aa3e7 (patch)
tree52b8db2971de6e8e92ae809be8a5ca4f0b5831a2 /src/Makefile
parent7c35a4ed6ec9ebb800c35872d83c105ac90b7891 (diff)
downloadhackvr-ebc7381301c06c31933d11ff3e2b68ca005aa3e7.tar.gz
hackvr-ebc7381301c06c31933d11ff3e2b68ca005aa3e7.zip
noticed I don't need input.o in the makefile anymore
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index 045f82c..6ed9c5d 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -14,7 +14,7 @@ all: hackvr_xdie hackvr_headless hackvr_x11 slowcat nonblocktail
# hackvr_fb hackvr_freeglut slowcat
hackvr_xdie: override LDLIBS+=-lm -lidc -lX11 -lhashtable
-hackvr_xdie: hackvr_xdie.o graphics_c3.o graphics_c2.o graphics_cs_x11.o math.o physics.o keyboard.o mouse_die.o keyboard_die.o input.o
+hackvr_xdie: hackvr_xdie.o graphics_c3.o graphics_c2.o graphics_cs_x11.o math.o physics.o keyboard.o mouse_die.o keyboard_die.o
nonblocktail: override LDLIBS+=-lidc
nonblocktail: nonblocktail.c
@@ -23,7 +23,8 @@ hackvr_headless: override LDLIBS+=-lm -lidc -lhashtable
hackvr_headless: hackvr_headless.o math.o physics.o
hackvr_x11: override LDLIBS+=-lm -lidc -lX11 -lhashtable
-hackvr_x11: hackvr_x11.o graphics_c3.o graphics_c2.o graphics_cs_x11.o math.o physics.o keyboard.o mouse_x11.o keyboard_x11.o input.o
+hackvr_x11: hackvr_x11.o graphics_c3.o graphics_c2.o graphics_cs_x11.o math.o physics.o keyboard.o mouse_x11.o keyboard_x11.o
+
#notice how all the targets have generic graphics objects up until a specific one.
hackvr_fb: override LDLIBS+=-lm -lidc -lhashtable