Skip to content

Instantly share code, notes, and snippets.

@Otumian-empire
Created May 3, 2023 17:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
makefile for the random disdtribution snippet
cc = gcc -Wall
file = rand_test.c
bin = app.o
all: compile run
compile:
@clear
@$(cc) $(file) -o $(bin)
run:
@./$(bin) 2
clean:
@rm -f $(bin) *.out *.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment