Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
bug fix on platform desktop Makefile
  • Loading branch information
Tanganelli committed Apr 9, 2015
commit 2662f162ff44e087251d0eaeebcf85b6f228bc11
2 changes: 1 addition & 1 deletion src/platform/desktop/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ $(PM_LIB_PATH) : ../../vm/*.c ../../vm/*.h
make -C ../../vm

$(TARGET).out : $(OBJS) $(PM_LIB_PATH)
$(CC) -lm -o $@ $(OBJS) $(PM_LIB_PATH)
$(CC) -o $@ $(OBJS) $(PM_LIB_PATH) -lm

pmfeatures.h : pmfeatures.py $(PMGENPMFEATURES)
$(PMGENPMFEATURES) pmfeatures.py > $@
Expand Down