Created
October 25, 2014 11:03
-
-
Save ixn/ea9cdded247e9209ef96 to your computer and use it in GitHub Desktop.
Simple object oriented in C (http://deeprhezy.tumblr.com)
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
| CC=gcc | |
| CFLAGS=-I. | |
| LDFLAGS= | |
| FUNGSIOBJ = object.c\ | |
| fungsiobj.c | |
| all:object | |
| object: $(FUNGSIOBJ) | |
| $(CC) $(CFLAGS) -o object $^ $(LDFLAGS) | |
| clean: | |
| rm -f *~ | |
| rm -f *.o | |
| rm -f object |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment