Skip to content
Snippets Groups Projects
Commit 9acf8fbe authored by Razvan Deaconescu's avatar Razvan Deaconescu
Browse files

Makefile: Add pack rule


`pack` rule is used to create submission archive.

Signed-off-by: default avatarRazvan Deaconescu <razvan.deaconescu@upb.ro>
parent 39d47848
No related branches found
No related tags found
No related merge requests found
Pipeline #20274 passed
......@@ -15,5 +15,10 @@ $(TARGET): build_parser $(OBJ) $(OBJ_PARSER)
build_parser:
$(MAKE) -C $(UTIL_PATH)/parser/
pack: clean
-rm -f ../src.zip
zip -r ../src.zip *
clean:
-rm -f ../src.zip
-rm -rf $(OBJ) $(OBJ_PARSER) $(TARGET) *~
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