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

Add pack rule to Makefile


This creates an archive to be submitted via VMChecker.

Signed-off-by: default avatarRazvan Deaconescu <razvan.deaconescu@upb.ro>
parent d243394f
No related branches found
No related tags found
No related merge requests found
Pipeline #12466 passed
......@@ -15,6 +15,11 @@ all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) ${LDFLAGS} -o $@ $^
pack: clean
-rm -f ../src.zip
zip -r ../src.zip *
clean:
-rm -f ../src.zip
-rm -f $(TARGET)
-rm -f $(OBJS)
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