Skip to content

Instantly share code, notes, and snippets.

@Otumian-empire
Created May 3, 2023 17:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Otumian-empire/37cce79db68c604b7014511bdb838589 to your computer and use it in GitHub Desktop.
Save Otumian-empire/37cce79db68c604b7014511bdb838589 to your computer and use it in GitHub Desktop.
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