Last active
January 3, 2016 01:19
-
-
Save andersx/8388418 to your computer and use it in GitHub Desktop.
linus stuff
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| all: main | |
| main: funclib.o getch_linux.o rovarsprak.c | |
| gcc -O3 -Wall --pedantic -o main rovarsprak.c funclib.o getch_linux.o | |
| funclib.o: funclib.c funclib.h | |
| gcc -c -O3 -Wall --pedantic funclib.c -o funclib.o | |
| getch_linux.o: getch_linux.c getch_linux.h | |
| gcc -c -O3 -Wall --pedantic getch_linux.c -o getch_linux.o | |
| clean: | |
| rm -f funclib.o getch_linux.o main | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment