Skip to content

Instantly share code, notes, and snippets.

@ixn
Created October 25, 2014 11:03
Show Gist options
  • Select an option

  • Save ixn/ea9cdded247e9209ef96 to your computer and use it in GitHub Desktop.

Select an option

Save ixn/ea9cdded247e9209ef96 to your computer and use it in GitHub Desktop.
Simple object oriented in C (http://deeprhezy.tumblr.com)
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