Skip to content
Snippets Groups Projects
Commit 06d6afe2 authored by arn2's avatar arn2
Browse files

Merge branch 'master-staging' into 'master'

Add Makefile, gitignore, and test .c file

See merge request arn2/git-tutorial!1
parents c0f0aa8f 6aafe9b3
No related branches found
No related tags found
No related merge requests found
*.o
main
src = $(wildcard *.c)
obj = $(src:.c=.o)
main: $(obj)
$(CC) -o $@ $^
.PHONY: clean
clean:
rm -f $(obj) myprog
main.c 0 → 100644
#include <stdio.h>
int main() {
printf("Hello new flight software members!\n");
}
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