Skip to content

Commit

Permalink
Makefile: change internal lib names
Browse files Browse the repository at this point in the history
  • Loading branch information
Lecrapouille committed Jun 29, 2024
1 parent e81c6eb commit 19825c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ INCLUDES := $(P)/include
VPATH := $(P)/src
# Internal libs to compile
LIB_TPNE_NET := $(call internal-lib,TimedPetriNet)
LIB_TPNE_EDITOR := $(call internal-lib,TimedPetriEditor)
LIB_TPNE_EDITOR := $(call internal-lib,TimedPetriGUI)
LIB_TPNE_JULIA := $(call internal-lib,TimedPetriJulia)
INTERNAL_LIBS := $(LIB_TPNE_EDITOR) $(LIB_TPNE_NET) $(LIB_TPNE_JULIA)
DIRS_WITH_MAKEFILE := $(P)/src/Net $(P)/src/Editor $(P)/src/julia
Expand Down
2 changes: 1 addition & 1 deletion src/Editor/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ M := $(P)/.makefile
# Project definition
#
include $(P)/Makefile.common
TARGET_NAME := TimedPetriEditor
TARGET_NAME := TimedPetriGUI
TARGET_DESCRIPTION := Library Editor for Petri nets
include $(M)/project/Makefile

Expand Down
4 changes: 2 additions & 2 deletions src/julia/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ INCLUDES += $(P)/include $(P)/src
# Internal libraries since we can call the GUI from Julia REPL
# We force compilation order.
LIB_TPNE_NET := $(call internal-lib,TimedPetriNet)
LIB_TPNE_EDITOR := $(call internal-lib,TimedPetriEditor)
LIB_TPNE_EDITOR := $(call internal-lib,TimedPetriGUI)
INTERNAL_LIBS := $(LIB_TPNE_EDITOR) $(LIB_TPNE_NET)
DIRS_WITH_MAKEFILE := $(P)/src/Net $(P)/src/Editor
#DIRS_WITH_MAKEFILE := $(P)/src/Net $(P)/src/Editor

#$(LIB_TPNE_NET): $(P)/src/Net

Expand Down

0 comments on commit 19825c9

Please sign in to comment.