JaxOnThat
JaxOnThat
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
thanks for the help, everyone
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
I'll come back here if I can't figure it out
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
(hopefully)
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
alright, i think i know how to make this work
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
is there a way i can activate it from a Makefile?
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
outside of the makefile
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
and also i cannot install things on the machine they will run this on
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
I cannot abandon the Makefile, it is part of the assignment parameters 😦
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
how do i change it to use .net
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
ah
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
i'm guessing that's not what i'm doing?
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
as for why I need Mono, it's getting run on Linux
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
It's for a University Project, if I could avoid Make I absolutely would 😅 🔫
39 replies
CC#
Created by JaxOnThat on 9/13/2023 in #help
❔ Anyone here know Makefiles?
Current Makefile:
.PHONY: client.cs

all: run

client.exe: client.cs
@apt-get update && apt-get install -y mono-complete
@mcs client.cs

clean:
@rm -f client.exe

run: client.exe
@mono client.exe
.PHONY: client.cs

all: run

client.exe: client.cs
@apt-get update && apt-get install -y mono-complete
@mcs client.cs

clean:
@rm -f client.exe

run: client.exe
@mono client.exe
39 replies