1
0

fix(lab04): makefile and justfile

This commit is contained in:
2026-05-27 20:05:08 +02:00
parent 286c73f8d5
commit 9a09f6cba6
2 changed files with 7 additions and 4 deletions

View File

@@ -1,8 +1,11 @@
EXE=multiprocessing
SRCS=process.c
cgroups:
$(MAKE) EXE=cgroups SRCS=cgroups.c all
process:
$(MAKE) EXE=multiprocessing SRCS=process.c all
# Include the standard application Makefile for the CSEL1 labs
include ../appl.mk

View File

@@ -2,10 +2,10 @@
just --list
@build:
make
make process cgroups
@process:
make
make process
@cgroups:
make cgroups