Skip to content
Snippets Groups Projects
Commit 0c74c1c9 authored by deuce's avatar deuce
Browse files

Fix recursive variable errors

parent 76f5b20b
No related branches found
No related tags found
No related merge requests found
......@@ -3,12 +3,12 @@ CXX = g++
UIFC_SRC = ../../../uifc
XPDEV_SRC = ../../../xpdev
ODOOR_SRC = ../../../odoors
CFLAGS = ${CFLAGS} -O2
CFLAGS = ${CFLAGS} -g
CFLAGS = ${CFLAGS} -I${ODOOR_SRC} -I${XPDEV_SRC} -I${UIFC_SRC}
CFLAGS += -O2
CFLAGS += -g
CFLAGS += -I${ODOOR_SRC} -I${XPDEV_SRC} -I${UIFC_SRC}
# Needed for struct alignment!
CFLAGS = ${CFLAGS} -fshort-enums
LDFLAGS = ${LDFLAGS} -L${ODOOR_SRC}
CFLAGS += -fshort-enums
LDFLAGS += -L${ODOOR_SRC}
all : ny2008 aedit nyibbs nyedit medit
......
......@@ -3,12 +3,12 @@ CXX = g++
UIFC_SRC = ../../../../uifc
XPDEV_SRC = ../../../../xpdev
ODOOR_SRC = ../../../../odoors
CFLAGS = ${CFLAGS} -O2
CFLAGS = ${CFLAGS} -g
CFLAGS = ${CFLAGS} -I${ODOOR_SRC} -I${XPDEV_SRC} -I${UIFC_SRC}
CFLAGS += -O2
CFLAGS += -g
CFLAGS += -I${ODOOR_SRC} -I${XPDEV_SRC} -I${UIFC_SRC}
# Needed for struct alignment!
CFLAGS = ${CFLAGS} -fshort-enums
LDFLAGS = ${LDFLAGS} -L${ODOOR_SRC}
CFLAGS += -fshort-enums
LDFLAGS += -L${ODOOR_SRC}
all : jackpot
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment