Skip to content

Commit

Permalink
fix typo in tests/Makefile.bsd
Browse files Browse the repository at this point in the history
  • Loading branch information
gh0stwizard committed Mar 26, 2020
1 parent ff94d09 commit 3a2248e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/Makefile.bsd
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@ all: ${TARGETS} ${PARTIAL_TRT}
.SUFFIXES: .bin
.o.bin: depend
# === tests -> linkage
${CC} ${LDFLAGS} -o $@ $< ${DEP_OBJ} ${LIBS}
${CC} ${LDFLAGS} ${CPPFLAGS} ${CFLAGS} -o $@ $< ${DEP_OBJ} ${LIBS}

.SUFFIXES: .o
.c.o:
# === tests -> compile $<
${CC} -c ${CPPFLAGS} ${INCLUDES} ${CFLAGS} -o $@ $<
${CC} -c ${CPPFLAGS} ${CFLAGS} -o $@ $<

.PATH: ${PARTIAL_PATH}
.SUFFIXES: .o
.c.o:
# === tests -> compile $<
${CC} -c ${CPPFLAGS}${INCLUDES} ${CFLAGS} -o $@ $<
${CC} -c ${CPPFLAGS} ${CFLAGS} -o $@ $<

clean:
# === tests -> cleanup
Expand Down

0 comments on commit 3a2248e

Please sign in to comment.