Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed May 8, 2024
1 parent 375c1e6 commit f2fc142
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ lv2-gtk-ui-bridge.lv2/lv2-gtk3-ui-bridge$(APP_EXT): src/ui-client.c src/ipc/*.h
# ---------------------------------------------------------------------------------------------------------------------

test: src/test.c src/ipc/*.h
$(CC) $< $(CFLAGS) $(LDFLAGS) -Wall -Wextra -o $@$(APP_EXT)
$(CC) $< $(CFLAGS) $(LDFLAGS) $(SHM_LIBS) -o $@$(APP_EXT)

testxx: src/test.c src/ipc/*.h
$(CXX) $< $(CXXFLAGS) $(LDFLAGS) -Wall -Wextra -o $@$(APP_EXT)
$(CXX) $< $(CXXFLAGS) $(LDFLAGS) $(SHM_LIBS) -o $@$(APP_EXT)

clean:
rm -f $(TARGETS) test testxx *.exe

0 comments on commit f2fc142

Please sign in to comment.